diff --git a/irc/irc.go b/irc/irc.go index febbefb..624d0e9 100644 --- a/irc/irc.go +++ b/irc/irc.go @@ -17,6 +17,7 @@ func (s *ircd) processIRCMessage(m *ircMessage) { } func (s *ircd) sayHello(c *ircClient) { + panic("not implemented") //001 welcome //002 host/version decl //003, 004, 005, 251, 252, 253, 254, 255, 256, 266 @@ -96,5 +97,4 @@ func (s *ircd) processUSERCommand(m *ircMessage) { func (s *ircd) processCAPCommand(m *ircMessage) { s.log.Debugln("ignoring CAP command, unsupported") - // pass }