[feature] Initial commit
This commit is contained in:
17
pangolin/domain.go
Normal file
17
pangolin/domain.go
Normal file
@@ -0,0 +1,17 @@
|
||||
package pangolin
|
||||
|
||||
type Domain struct {
|
||||
ID string `json:"domainId"`
|
||||
BaseDomain string `json:"baseDomain"`
|
||||
Verified bool `json:"verified"`
|
||||
Type string `json:"type"`
|
||||
Failed bool `json:"failed"`
|
||||
Tries int `json:"tries"`
|
||||
ConfigManaged bool `json:"configManaged"`
|
||||
CertResolver string `json:"certResolver"`
|
||||
PreferWildcardCert *bool `json:"preferWildcardCert"`
|
||||
}
|
||||
|
||||
type DomainResponse struct {
|
||||
Domains []Domain `json:"domains"`
|
||||
}
|
||||
Reference in New Issue
Block a user