glucose_exporter/internal/config/config.go

12 lines
346 B
Go
Raw Normal View History

2024-03-20 08:58:17 +01:00
package config
var Cfg Config //nolint:gochecknoglobals
type Config struct {
Email string `env:"EMAIL,required"`
Password string `env:"PASSWORD,expand"`
PasswordFile string `env:"PASSWORD_FILE,expand"`
CacheDir string `env:"CACHE_DIR,expand" envDefault:"/var/cache/glucose_exporter"`
Debug bool `env:"DEBUG"`
}