mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-18 09:21:56 +08:00
16 lines
318 B
Go
16 lines
318 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"`
|
|
}
|