diff options
Diffstat (limited to 'internal/models')
| -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"` +} |
