9 lines
304 B
Go
9 lines
304 B
Go
package config
|
|
|
|
type AcmeSh struct {
|
|
Domain string `yaml:"domain" toml:"domain" json:"domain"`
|
|
KeyPath string `yaml:"key_path" toml:"key_path" json:"key_path"`
|
|
DNSType string `yaml:"dns_type" toml:"dns_type" json:"dns_type"`
|
|
DNSEmail string `yaml:"dns_email" toml:"dns_email" json:"dns_email"`
|
|
}
|