irc/irc_replies.go

11 lines
146 B
Go
Raw Permalink Normal View History

2021-10-27 20:09:50 -04:00
package irc
const (
2021-10-27 21:25:41 -04:00
RPL_LUSERCLIENT = 251
RPL_LUSERCHANNELS = 254
RPL_NAMREPLY = 353
RPL_ENDOFMOTD = 376
2021-10-27 21:10:18 -04:00
ERR_NOSUCHNICK = 401
2021-10-27 20:09:50 -04:00
)