Engine implements Lens V2's core search functionality
| 28 | |
| 29 | // Engine implements Lens V2's core search functionality |
| 30 | type Engine struct { |
| 31 | l *zap.SugaredLogger |
| 32 | |
| 33 | index bleve.Index |
| 34 | q *queue.Queue |
| 35 | |
| 36 | stop chan bool |
| 37 | } |
| 38 | |
| 39 | // Opts denotes options for the Lens engine |
| 40 | type Opts struct { |
nothing calls this directly
no outgoing calls
no test coverage detected