diff --git a/bot/bot.go b/bot/bot.go index 9e1f17d..ef8b03f 100644 --- a/bot/bot.go +++ b/bot/bot.go @@ -74,6 +74,7 @@ func (b *Bot) Run() error { bh.Handle(b.startHandler, th.CommandEqual("start")) bh.Handle(b.heyHandler, th.CommandEqual("hey")) bh.Handle(b.summarizeHandler, th.CommandEqual("summarize")) + bh.Handle(b.statsHandler, th.CommandEqual("stats")) bh.Handle(b.helpHandler, th.CommandEqual("help")) bh.Start()