This commit is contained in:
Stanislav Nikitin 2021-06-07 12:14:21 +05:00
parent 462d09cee2
commit e855ce673c
Signed by: pztrn
GPG Key ID: 1E944A0F0568B550
1 changed files with 2 additions and 2 deletions

View File

@ -2,17 +2,17 @@ package powerdns
type zoneData struct {
Name string `json:"name"`
Type string `json:"type"`
RRSets []RRSet `json:"rrsets"`
Serial int64 `json:"serial"`
Type string `json:"type"`
}
type RRSet struct {
ChangeType string `json:"changetype"`
Name string `json:"name"`
Type string `json:"type"`
Records []Record `json:"records"`
TTL int64 `json:"ttl"`
Type string `json:"type"`
}
type Record struct {