(&self, collection: &str, id: &str)
| 140 | } |
| 141 | |
| 142 | async fn document_get(&self, collection: &str, id: &str) -> NodeDbResult<Option<Document>> { |
| 143 | self.document_get_impl(collection, id).await |
| 144 | } |
| 145 | |
| 146 | async fn document_put(&self, collection: &str, doc: Document) -> NodeDbResult<()> { |
| 147 | self.document_put_impl(collection, doc).await |
nothing calls this directly
no test coverage detected