blob: c9314ddc97a0dc64c2fb4aec7d59d8fa0bc038f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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"`
}
|