| 32 | ) |
| 33 | |
| 34 | type Builder interface { |
| 35 | Len() int |
| 36 | Execute(ctx context.Context, dbExecutor db.Executor, pkgS []string) |
| 37 | Results(dbExecutor db.Executor, verboseSearch SearchVerbosity) error |
| 38 | GetTargets(include, exclude intrange.IntRanges, otherExclude mapset.Set[string]) ([]string, error) |
| 39 | SetLua(engine *settingslua.Engine) |
| 40 | } |
| 41 | |
| 42 | type SortFunc func(pkgA, pkgB abstractResult) int |
| 43 |
no outgoing calls
no test coverage detected