Implementing simple stats counter (fix).
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

This commit is contained in:
Alexey Skobkin 2024-03-11 23:19:05 +03:00
parent 2ed9c2f6dc
commit eecb5aa09b
No known key found for this signature in database
GPG key ID: 5D5CEF6F221278E7

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