1
0
Fork 0
mirror of https://git.sr.ht/~ashkeel/strimertul synced 2024-09-20 02:00:49 +00:00
strimertul/twitch/modules.go
2022-11-30 19:15:47 +01:00

10 lines
203 B
Go

package twitch
func (b *Bot) LoadModules() error {
b.logger.Debug("starting timer module")
b.Timers = SetupTimers(b)
b.logger.Debug("starting alerts module")
b.Alerts = SetupAlerts(b)
return nil
}