(&self, collection: &str, id: &str)
| 130 | } |
| 131 | |
| 132 | async fn document_get(&self, collection: &str, id: &str) -> NodeDbResult<Option<Document>> { |
| 133 | self.document_get_impl(collection, id).await |
| 134 | } |
| 135 | |
| 136 | async fn document_put(&self, collection: &str, doc: Document) -> NodeDbResult<()> { |
| 137 | self.document_put_impl(collection, doc).await |
nothing calls this directly
no test coverage detected