bind/js: Implement DatabaseStorage::sync

This commit is contained in:
Diego Reis 2025-05-08 08:41:48 -03:00
parent 259bfc04b7
commit e4014d290f

View file

@ -170,8 +170,8 @@ impl limbo_core::DatabaseStorage for DatabaseFile {
Ok(())
}
fn sync(&self, _c: limbo_core::Completion) -> limbo_core::Result<()> {
todo!()
fn sync(&self, c: limbo_core::Completion) -> limbo_core::Result<()> {
self.file.sync(c)
}
}