This commit is contained in:
Jaremy Creechley 2023-09-28 18:03:41 -07:00
parent 8ce566a99b
commit 5f84ed4bda
No known key found for this signature in database
GPG Key ID: 4E66FB67B21D3300

View File

@ -46,13 +46,13 @@ method put*(self: FSDatastore,
batch: seq[BatchEntry]): Future[?!void] {.async.} =
await self.db.put(batch)
method close*(self: FSDatastore): Future[?!void] {.async.} =
await self.db.close()
method query*(self: FSDatastore,
q: Query): Future[?!QueryIter] {.async.} =
await self.db.query(q)
method close*(self: FSDatastore): Future[?!void] {.async.} =
await self.db.close()
proc new*(
T: type FSDatastore,
root: string,