This commit is contained in:
Matt Burchett
2018-11-30 12:24:57 -06:00
parent 693a6d411a
commit 9209c26864
2 changed files with 23 additions and 18 deletions

View File

@ -3,11 +3,11 @@ package model
type Results struct {
IP string `json:"ip"`
Hostname string `json:"hostname"`
TXT string `json:"TXT,omitempty"`
TXT string `json:"TXT`
}
type UniqResults struct {
IP string `json:"ip"`
Hostname string `json:"hostname"`
TXT string `json:"TXT,omitempty"`
TXT string `json:"TXT"`
}