strimertul/twitch/chat/config.go

12 lines
355 B
Go

package chat
const ConfigKey = "twitch/chat/config"
type Config struct {
// How many messages to keep in twitch/chat-history
ChatHistory int `json:"chat_history" desc:"How many messages to keep in the chat history key"`
// Global command cooldown in seconds
CommandCooldown int `json:"command_cooldown" desc:"Global command cooldown in seconds"`
}