diff options
| author | s <[email protected]> | 2025-11-06 22:15:35 -0500 |
|---|---|---|
| committer | s <[email protected]> | 2025-11-06 22:15:35 -0500 |
| commit | 5f0e15788032951f215bda1df3b5ce1e55125f59 (patch) | |
| tree | 79745064ecd7a38324520c8e9330c6f125a5fc2f /internal/models/osint.go | |
| parent | eab6a1b6899413154f855abbd200ac775b22be75 (diff) | |
| download | dborg-5f0e15788032951f215bda1df3b5ce1e55125f59.tar.gz dborg-5f0e15788032951f215bda1df3b5ce1e55125f59.zip | |
feat: add breachforum search command with api client integration
Diffstat (limited to 'internal/models/osint.go')
| -rw-r--r-- | internal/models/osint.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/internal/models/osint.go b/internal/models/osint.go index d403d57..6096df8 100644 --- a/internal/models/osint.go +++ b/internal/models/osint.go @@ -25,3 +25,14 @@ type BSSIDLookupResponse []BSSIDResult type ErrorResponse struct { Error string `json:"error"` } + +type BreachForumSearchParams struct { + Search string + MaxHits int +} + +type BreachForumSearchResponse struct { + Query string `json:"query"` + MaxHits int `json:"max_hits"` + Results interface{} `json:"results"` +} |
