From c5ca5cc4791b1425aa65d7d175f2bbdda004bbb8 Mon Sep 17 00:00:00 2001 From: sneak Date: Tue, 25 Feb 2020 09:08:51 -0800 Subject: [PATCH] remove comment --- irc/irc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }