11 lines
312 B
Go
11 lines
312 B
Go
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
|
|
}
|