(&self, collection: &str, doc: Document)
| 144 | } |
| 145 | |
| 146 | async fn document_put(&self, collection: &str, doc: Document) -> NodeDbResult<()> { |
| 147 | self.document_put_impl(collection, doc).await |
| 148 | } |
| 149 | |
| 150 | async fn document_delete(&self, collection: &str, id: &str) -> NodeDbResult<()> { |
| 151 | self.document_delete_impl(collection, id).await |
nothing calls this directly
no test coverage detected