package models type DNSTLDParams struct { Term string ShowOnly string } type DomainResult struct { Domain string `json:"domain"` Status string `json:"status"` 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"` }