1 2 3 4 5 6 7 8 9
package model import ( "io/fs" ) type Indexer interface { Index(path string, fs fs.FS, runners []Runner) ([]Target, error) }