mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-11 15:09:51 +00:00
21 lines
421 B
Go
21 lines
421 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"`
|
|
}
|
|
|
|
type CloudflareAccess struct {
|
|
DnsApiToken string `json:"dnsApiToken"`
|
|
}
|
|
|
|
type QiniuAccess struct {
|
|
AccessKey string `json:"accessKey"`
|
|
SecretKey string `json:"secretKey"`
|
|
}
|