aboutsummaryrefslogblamecommitdiff
path: root/numerics.go
blob: dcf78126d1a305711f4a270d30c933d6fefa9ed9 (plain) (tree)
1
2
3
4
5
6
7
8


            




                            


       



                                     
                                     
 
package main

const (
	RPL_WELCOME  = "001"
	RPL_YOURHOST = "002"
	RPL_CREATED  = "003"
	RPL_MYINFO   = "004"
	RPL_ISUPPORT = "005"
)

const (
	ERR_UNKNOWNCOMMAND    = "421"
	ERR_INPUTTOOLONG      = "417"
	ERR_NEEDMOREPARAMS    = "461"
	ERR_NICKNAMEINUSE     = "433"
	ERR_ALREADYREGISTERED = "462"
)