You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
492 B
9 lines
492 B
4 months ago
|
package config
|
||
|
|
||
|
type JPush struct {
|
||
|
Appkey string `mapstructure:"appkey" json:"appkey" yaml:"appkey"` //appkey
|
||
|
Secret string `mapstructure:"secret" json:"secret" yaml:"secret"` //密钥
|
||
|
AllUserSign string `mapstructure:"all-user-sign" json:"allUserSign" yaml:"all-user-sign"` //所有用户标签
|
||
|
AndroidIntent string `mapstructure:"android-intent" json:"androidIntent" yaml:"android-intent"` //安卓厂商通道包名
|
||
|
}
|