mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-08 21:49:52 +00:00
20 lines
663 B
Go
20 lines
663 B
Go
package domain
|
|
|
|
// Deprecated: TODO: 即将废弃
|
|
type ApplyConfig struct {
|
|
ContactEmail string `json:"contactEmail"`
|
|
ProviderAccessId string `json:"providerAccessId"`
|
|
KeyAlgorithm string `json:"keyAlgorithm"`
|
|
Nameservers string `json:"nameservers"`
|
|
PropagationTimeout int32 `json:"propagationTimeout"`
|
|
DisableFollowCNAME bool `json:"disableFollowCNAME"`
|
|
}
|
|
|
|
// Deprecated: TODO: 即将废弃
|
|
type DeployConfig struct {
|
|
NodeId string `json:"nodeId"`
|
|
NodeConfig map[string]any `json:"nodeConfig"`
|
|
Provider string `json:"provider"`
|
|
ProviderAccessId string `json:"providerAccessId"`
|
|
}
|