diff --git a/internal/storage/powerdns/data.go b/internal/storage/powerdns/data.go index ed322e7..a755caa 100644 --- a/internal/storage/powerdns/data.go +++ b/internal/storage/powerdns/data.go @@ -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 {