backend/storage/
mod.rs

1//! Storage adapters for Automerge.
2
3mod postgres;
4#[allow(missing_docs)]
5pub mod testing;
6
7pub use postgres::PostgresStorage;