traefik/vendor/github.com/cpu/goacmedns/account.go

12 lines
312 B
Go
Raw Normal View History

2018-07-23 15:30:03 +00:00
package goacmedns
// Account is a struct that holds the registration response from an ACME-DNS
// server. It represents an API username/key that can be used to update TXT
// records for the account's subdomain.
type Account struct {
FullDomain string
SubDomain string
Username string
Password string
}