package config

type Ipaddr struct {
	Url       string `mapstructure:"url" json:"url" yaml:"url"`                   // 存储区域
	Appkey    string `mapstructure:"appkey" json:"appkey" yaml:"appkey"`          // 存储区域
	Appsecret string `mapstructure:"appsecret" json:"appsecret" yaml:"appsecret"` // 存储区域
	Appcode   string `mapstructure:"appcode" json:"appcode" yaml:"appcode"`       // 存储区域
}