| 25 | ) |
| 26 | |
| 27 | type DB struct { |
| 28 | *baseDB |
| 29 | |
| 30 | pathBase string |
| 31 | deleteRetention time.Duration |
| 32 | |
| 33 | folderDBsMut sync.RWMutex |
| 34 | folderDBs map[string]*folderDB |
| 35 | folderDBOpener func(folder, path string, deleteRetention time.Duration) (*folderDB, error) |
| 36 | } |
| 37 | |
| 38 | var _ db.DB = (*DB)(nil) |
| 39 |
nothing calls this directly
no outgoing calls
no test coverage detected