summaryrefslogtreecommitdiffstats
path: root/internal/models
diff options
context:
space:
mode:
authors <[email protected]>2025-11-09 14:26:42 -0500
committers <[email protected]>2025-11-09 14:26:42 -0500
commit65acee9a9b500c17b9426f80997401758ec326b1 (patch)
tree358adc19e4099077d09f7d0001a3269a07a63da4 /internal/models
parentf1070f0a2be928d188c418b59fcbc8e82d1a9367 (diff)
downloaddborg-65acee9a9b500c17b9426f80997401758ec326b1.tar.gz
dborg-65acee9a9b500c17b9426f80997401758ec326b1.zip
feat: add osint geo search command for address information lookupv0.6.0
Diffstat (limited to 'internal/models')
-rw-r--r--internal/models/osint.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/internal/models/osint.go b/internal/models/osint.go
index 950225d..d025836 100644
--- a/internal/models/osint.go
+++ b/internal/models/osint.go
@@ -90,3 +90,12 @@ type ShortlinksSearchResponse struct {
Credits CreditsInfo `json:"credits"`
Results interface{} `json:"results"`
}
+
+type GeoSearchParams struct {
+ Street string
+ City string
+ State string
+ Zip string
+}
+
+type GeoSearchResponse map[string]interface{}