diff options
| author | s <[email protected]> | 2025-11-25 09:58:42 -0500 |
|---|---|---|
| committer | s <[email protected]> | 2025-11-25 09:58:42 -0500 |
| commit | 8a342848809a26e7e13933180b4df91d4a52f898 (patch) | |
| tree | 6d273e54d6ffb6ae694e21ce587e28348b01aea5 /internal/models | |
| parent | 8472267b60b204cea5fbdeaf8fe06443822d1bfb (diff) | |
| download | dborg-1.0.6.tar.gz dborg-1.0.6.zip | |
feat: add dns site check, services list, and additional twitter/x api endpointsv1.0.6
Diffstat (limited to 'internal/models')
| -rw-r--r-- | internal/models/dns.go | 7 |
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"` +} |
