7 lines
222 B
Go
7 lines
222 B
Go
package config
|
|
|
|
type Applet struct {
|
|
AppID string `mapstructure:"app_id" json:"app_id" yaml:"app_id"` // appid
|
|
AppSecret string `mapstructure:"app_secret" json:"app_secret" yaml:"app_secret"` // secret
|
|
}
|