10 lines
185 B
Go
10 lines
185 B
Go
package config
|
|
|
|
type Config struct {
|
|
ArlCookie string `mapstructure:"arl_cookie"`
|
|
SecretKey string `mapstructure:"secret_key"`
|
|
IV string `mapstructure:"iv"`
|
|
}
|
|
|
|
var Cfg Config
|