1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-20 02:00:49 +00:00
strimertul/modules/twitch/modules.go

10 lines
203 B
Go
Raw Normal View History

package twitch
func (b *Bot) LoadModules() error {
2021-12-05 14:47:53 +00:00
b.logger.Debug("starting timer module")
b.Timers = SetupTimers(b)
b.logger.Debug("starting alerts module")
b.Alerts = SetupAlerts(b)
return nil
}