github.com/quay/claircore@v1.5.28/indexer/options.go (about) 1 package indexer 2 3 import ( 4 "net/http" 5 ) 6 7 // Options are options to instantiate a indexer 8 type Options struct { 9 Client *http.Client 10 ScannerConfig struct { 11 Package, Dist, Repo, File map[string]func(interface{}) error 12 } 13 Store Store 14 LayerScanner *LayerScanner 15 FetchArena FetchArena 16 Ecosystems []*Ecosystem 17 Resolvers []Resolver 18 Vscnrs VersionedScanners 19 }