summaryrefslogtreecommitdiffstats
path: root/internal/models/dns.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/models/dns.go')
-rw-r--r--internal/models/dns.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/internal/models/dns.go b/internal/models/dns.go
index 51d9e50..776e3d6 100644
--- a/internal/models/dns.go
+++ b/internal/models/dns.go
@@ -11,3 +11,10 @@ type DomainResult struct {
Title string `json:"title,omitempty"`
Tech []string `json:"tech,omitempty"`
}
+
+type DNSResponse struct {
+ Message string `json:"message,omitempty"`
+ Data map[string]interface{} `json:"data,omitempty"`
+ Error string `json:"error,omitempty"`
+ Response string `json:"response,omitempty"`
+}