mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 05:29:51 +00:00
16 lines
338 B
Go
16 lines
338 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 {
|
|
CloudflareDnsApiToken string `json:"cloudflareDnsApiToken"`
|
|
}
|