Various changes.

This commit is contained in:
Matt Burchett
2019-01-14 12:31:46 -06:00
parent d62f45cc10
commit 43ed2ea438
3 changed files with 7 additions and 4 deletions

View File

@ -1,11 +1,13 @@
package model
// Results is for DNS results
type Results struct {
IP string `json:"ip"`
Hostname string `json:"hostname"`
TXT string `json:"TXT`
TXT string `json:"TXT"`
}
// UniqResults is for Unique DNS Results
type UniqResults struct {
IP string `json:"ip"`
Hostname string `json:"hostname"`