remove comment

This commit is contained in:
Jeffrey Paul 2020-02-25 09:08:51 -08:00
parent 88d09f3419
commit c5ca5cc479
1 changed files with 1 additions and 1 deletions

View File

@ -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
}