Files
godeez/internal/config/config.go
T

11 lines
246 B
Go

package config
type Config struct {
LicenseToken string `mapstructure:"license_token"`
ArlCookie string `mapstructure:"arl_cookie"`
SecretKey string `mapstructure:"secret_key"`
IV string `mapstructure:"iv"`
}
var Cfg Config