From 5f0e15788032951f215bda1df3b5ce1e55125f59 Mon Sep 17 00:00:00 2001 From: s Date: Thu, 6 Nov 2025 22:15:35 -0500 Subject: feat: add breachforum search command with api client integration --- internal/models/osint.go | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'internal/models') 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"` +} -- cgit v1.2.3