8 lines
233 B
Go
8 lines
233 B
Go
|
|
package config
|
||
|
|
|
||
|
|
type JPushConfig struct {
|
||
|
|
Enabled bool `mapstructure:"enabled"`
|
||
|
|
AppKey string `mapstructure:"app_key"`
|
||
|
|
MasterSecret string `mapstructure:"master_secret"`
|
||
|
|
Production bool `mapstructure:"production"`
|
||
|
|
}
|