7 lines
195 B
Go
7 lines
195 B
Go
package config
|
|
|
|
type SuperKangaroo struct {
|
|
ApiUrl string `mapstructure:"apiUrl" json:"apiUrl" yaml:"apiUrl"`
|
|
SecretKey string `mapstructure:"secretKey" json:"secretKey" yaml:"secretKey"`
|
|
}
|