| 1 | package api |
| 2 | |
| 3 | type SearchResult struct { |
| 4 | Package string `json:"package"` |
| 5 | Path string `json:"path"` |
| 6 | Line uint32 `json:"line"` |
| 7 | Context string `json:"context"` |
| 8 | ContextBefore []string `json:"context_before,omitempty"` |
| 9 | ContextAfter []string `json:"context_after,omitempty"` |
| 10 | } |
| 11 | |
| 12 | type PerPackageResult struct { |
| 13 | Package string `json:"package"` |
nothing calls this directly
no outgoing calls
no test coverage detected