summaryrefslogtreecommitdiffstats
path: root/xmppbot.go
diff options
context:
space:
mode:
Diffstat (limited to 'xmppbot.go')
-rw-r--r--xmppbot.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmppbot.go b/xmppbot.go
index 0c3c66d..4284fd2 100644
--- a/xmppbot.go
+++ b/xmppbot.go
@@ -18,14 +18,14 @@ func main() {
goctl.Logger.SetHandler(log15.StdoutHandler)
gc := goctl.NewGoctl(sockPath)
- if err := gc.AddHandlers([]goctl.Handler{
+ if err := gc.AddHandlers(
handlers.Dial{},
handlers.Login{},
handlers.Bind{},
handlers.Stop{C: stopChan},
handlers.Presence{},
handlers.Raw{},
- }); err != nil {
+ ); err != nil {
log15.Crit("Couldn't set up command handlers.", "error", err)
return
}