diff --git a/app/configuration.go b/app/configuration.go index 2a49f5b..9fb4b88 100644 --- a/app/configuration.go +++ b/app/configuration.go @@ -8,7 +8,7 @@ type DiscordConfig struct { Token string `yaml:"token" env:"DISCORD_TOKEN"` GuildID string `yaml:"guild_id" env:"DISCORD_GUILD_ID"` - EventCategory string `yaml:"event_category"` - ArchiveCategory string `yaml:"archive_category"` - NotificationChannel string `yaml:"notification_channel"` + EventCategory string `yaml:"event_category" env:"DISCORD_EVENT_CATEGORY"` + ArchiveCategory string `yaml:"archive_category" env:"DISCORD_ARCHIVE_CATEGORY"` + NotificationChannel string `yaml:"notification_channel" env:"DISCORD_ARCHIVE_CATEGORY"` }