| 21 | var _ Cache = &FSCache{} |
| 22 | |
| 23 | type FSCache struct { |
| 24 | db *bolt.DB |
| 25 | directory string |
| 26 | } |
| 27 | |
| 28 | func NewFSCache(cacheDir string) (FSCache, error) { |
| 29 | dir := filepath.Join(cacheDir, scanCacheDirName) |
nothing calls this directly
no outgoing calls
no test coverage detected