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.
11 lines
294 B
11 lines
294 B
8 months ago
|
package config
|
||
|
|
||
|
type AliSms struct {
|
||
|
AccessKeyId string `ini:"accessKeyId"`
|
||
|
AccessKeySecret string `ini:"accessKeySecret"`
|
||
|
Endpoint string `ini:"endpoint"`
|
||
|
YzmSign string `ini:"yzmSign"`
|
||
|
YzmCode string `ini:"yzmCode"`
|
||
|
YzmExpire uint `ini:"yzmExpire"`
|
||
|
}
|