(path string, optimizeForLitestream bool)
| 28 | ) |
| 29 | |
| 30 | func New(path string, optimizeForLitestream bool) Store { |
| 31 | return NewWithChunkSize(path, defaultChunkSize, optimizeForLitestream) |
| 32 | } |
| 33 | |
| 34 | // NewWithChunkSize creates a SQLite-based datastore with the user-specified |
| 35 | // chunk size for writing files. Most callers should just use New(). |
no test coverage detected