Implementing simple stats counter (fix). #7

Merged
skobkin merged 1 commits from feature_4_configuration into main 2024-03-11 20:19:53 +00:00
1 changed files with 1 additions and 0 deletions

View File

@ -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()