diff options
Diffstat (limited to 'internal/models/breachforum.go')
| -rw-r--r-- | internal/models/breachforum.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/internal/models/breachforum.go b/internal/models/breachforum.go new file mode 100644 index 0000000..c9314dd --- /dev/null +++ b/internal/models/breachforum.go @@ -0,0 +1,12 @@ +package models + +type BreachForumSearchParams struct { + Search string + MaxHits int +} + +type BreachForumSearchResponse struct { + Query string `json:"query"` + MaxHits int `json:"max_hits"` + Results interface{} `json:"results"` +} |
