From e855ce673c7030b9b446e8f8fe3c151cee058171 Mon Sep 17 00:00:00 2001 From: "Stanislav N. aka pztrn" Date: Mon, 7 Jun 2021 12:14:21 +0500 Subject: [PATCH] Linting. --- internal/storage/powerdns/data.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 {