Print ERROR messages

This commit is contained in:
Ken-Håvard Lieng 2017-07-03 07:25:38 +02:00
parent ae6ad0a5b9
commit 9dffb541b9
2 changed files with 11 additions and 5 deletions

View file

@ -1,15 +1,16 @@
package irc
const (
Ping = "PING"
Nick = "NICK"
Error = "ERROR"
Join = "JOIN"
Part = "PART"
Mode = "MODE"
Privmsg = "PRIVMSG"
Nick = "NICK"
Notice = "NOTICE"
Topic = "TOPIC"
Part = "PART"
Ping = "PING"
Privmsg = "PRIVMSG"
Quit = "QUIT"
Topic = "TOPIC"
ReplyWelcome = "001"
ReplyYourHost = "002"