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

32 lines
589 B
Go

package twitch
import (
"errors"
"github.com/strimertul/strimertul/modules/database"
)
const BotModulesConfigKey = "twitch/bot-modules/config"
type BotModulesConfig struct {
EnableTimers bool `json:"enable_timers"`
}
func (b *Bot) LoadModules() error {
var cfg BotModulesConfig
err := b.api.db.GetJSON(BotModulesConfigKey, &cfg)
if err != nil {
if !errors.Is(err, database.ErrKeyNotFound) {
return err
}
cfg = BotModulesConfig{
EnableTimers: false,
}
}
if cfg.EnableTimers {
b.logger.Debug("starting timer module")
b.Timers = SetupTimers(b)
}
return nil
}