mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-09 14:09:52 +00:00
23 lines
581 B
Go
23 lines
581 B
Go
package domain
|
|
|
|
type ApplyConfig struct {
|
|
Email string `json:"email"`
|
|
Access string `json:"access"`
|
|
KeyAlgorithm string `json:"keyAlgorithm"`
|
|
Nameservers string `json:"nameservers"`
|
|
Timeout int64 `json:"timeout"`
|
|
DisableFollowCNAME bool `json:"disableFollowCNAME"`
|
|
}
|
|
|
|
type DeployConfig struct {
|
|
Id string `json:"id"`
|
|
Access string `json:"access"`
|
|
Type string `json:"type"`
|
|
Config map[string]any `json:"config"`
|
|
}
|
|
|
|
type KV struct {
|
|
Key string `json:"key"`
|
|
Value string `json:"value"`
|
|
}
|