mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 05:29:51 +00:00
13 lines
244 B
Go
13 lines
244 B
Go
package domain
|
|
|
|
type AliyunAccess struct {
|
|
AccessKeyId string `json:"accessKeyId"`
|
|
AccessKeySecret string `json:"accessKeySecret"`
|
|
}
|
|
|
|
|
|
|
|
type TencentAccess struct {
|
|
SecretId string `json:"secretId"`
|
|
SecretKey string `json:"secretKey"`
|
|
} |