8 lines
267 B
Go
8 lines
267 B
Go
package config
|
|
|
|
type TTS struct {
|
|
AppId string `mapstructure:"app-id" json:"app-id" yaml:"app-id"`
|
|
SecretId string `mapstructure:"secret-id" json:"secret-id" yaml:"secret-id"`
|
|
SecretKey string `mapstructure:"secret-key" json:"secret-key" yaml:"secret-key"`
|
|
}
|