mirror of
https://github.com/watn3y/steamsalty.git
synced 2025-04-19 16:01:22 +02:00
- Fixed SLEEPTIME not working (always 0) - Refined logging - Added metadata to /info command - Bot now automatically sets own commands for autocompletion
10 lines
446 B
Go
10 lines
446 B
Go
package config
|
|
|
|
type config struct {
|
|
LogLevel int `env:"STEAMSALTY_LOGLEVEL, default=1"`
|
|
TelegramAPIToken string `env:"STEAMSALTY_TELEGRAMAPITOKEN, required"`
|
|
SteamAPIKey string `env:"STEAMSALTY_STEAMAPIKEY, required"`
|
|
ChatID int64 `env:"STEAMSALTY_CHATID, required"`
|
|
Watchers []uint64 `env:"STEAMSALTY_WATCHERS, required"`
|
|
SleepInterval int `env:"STEAMSALTY_SLEEPINTERVAL, default=60"`
|
|
}
|