Files
godeez/internal/config/config.go
T

10 lines
197 B
Go

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