9 lines
354 B
Go
9 lines
354 B
Go
package config
|
|
|
|
type App struct {
|
|
ApiUrl string `mapstructure:"apiUrl" json:"apiUrl" yaml:"apiUrl"`
|
|
SecretKey string `mapstructure:"secretKey" json:"secretKey" yaml:"secretKey"`
|
|
ImagePrefix string `mapstructure:"imagePrefix" json:"imagePrefix" yaml:"imagePrefix"`
|
|
Platform string `mapstructure:"platform" json:"platform" yaml:"platform"`
|
|
}
|