refactor: Move realtime channels to its own config

This commit is contained in:
Matthew
2023-11-27 02:18:01 -05:00
parent 38b57c6d98
commit 523266fc68
4 changed files with 20 additions and 4 deletions

View File

@@ -161,8 +161,13 @@ type GameplayOptions struct {
// Discord holds the discord integration config.
type Discord struct {
Enabled bool
BotToken string
RealTimeChannel DiscordRealTime
}
type DiscordRealTime struct {
Enabled bool
BotToken string
RealtimeChannelID string
}