1
0
Fork 0
mirror of https://github.com/fluffle/goirc synced 2025-09-06 00:43:20 +00:00

Split handlers up into three groups.

This commit is contained in:
Alex Bramley 2013-09-28 00:15:54 +01:00
parent 12eb9c89eb
commit 144001d109
5 changed files with 44 additions and 15 deletions

View file

@ -26,7 +26,7 @@ var stHandlers = map[string]HandlerFunc{
func (conn *Conn) addSTHandlers() {
for n, h := range stHandlers {
conn.stRemovers = append(conn.stRemovers, conn.Handle(n, h))
conn.stRemovers = append(conn.stRemovers, conn.handle(n, h))
}
}