| 14 | ) |
| 15 | |
| 16 | type folderDB struct { |
| 17 | *baseDB |
| 18 | |
| 19 | folderID string |
| 20 | |
| 21 | localDeviceIdx int64 |
| 22 | deleteRetention time.Duration |
| 23 | } |
| 24 | |
| 25 | func openFolderDB(folder, path string, deleteRetention time.Duration) (*folderDB, error) { |
| 26 | pragmas := []string{ |
nothing calls this directly
no outgoing calls
no test coverage detected