7 lines
199 B
Go
7 lines
199 B
Go
package config
|
|
|
|
type ServiceAccount struct {
|
|
AppId string `mapstructure:"app-id" json:"app-id" yaml:"app-id"`
|
|
AppSecret string `mapstructure:"app-secret" json:"app-secret" yaml:"app-secret"`
|
|
}
|