mirror of
https://github.com/watn3y/steamsalty.git
synced 2025-04-20 00:11:23 +02:00
9 lines
304 B
Go
9 lines
304 B
Go
package config
|
|
|
|
type config struct {
|
|
TelegramAPIToken string `env:"TELEGRAMAPITOKEN, required"`
|
|
SteamAPIKey string `env:"STEAMAPIKEY, required"`
|
|
DebugMode bool `env:"DEBUGMODE, default=false"`
|
|
ChatID int64 `env:"CHATID"`
|
|
Watchers []uint64 `env:"WATCHERS"`
|
|
}
|