Initial commit

This commit is contained in:
2018-11-26 22:56:21 -06:00
commit fb4926df1e
5 changed files with 165 additions and 0 deletions

13
pkg/model/model.go Normal file
View File

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