From e64efeceecc34eb9610978a95e9ea2e75bc39d87 Mon Sep 17 00:00:00 2001 From: blackbeard420 Date: Sun, 5 Jan 2020 17:00:14 -0500 Subject: [PATCH] comments --- irc.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/irc.go b/irc.go index f2d9528..e30161b 100644 --- a/irc.go +++ b/irc.go @@ -96,6 +96,8 @@ func GetNick(name string) string { return strings.Split(name, "!")[0] } +//TODO: simplify this to pass gocyclo +//TODO: handle NICK messages func (c *Connection) parseMessage(line string) { if line[0] == ':' { buf := line[1:]