Skip to main content

subcog/storage/persistence/
mod.rs

1//! Persistence backend implementations.
2
3mod filesystem;
4mod postgresql;
5
6pub use filesystem::FilesystemBackend;
7pub use postgresql::PostgresBackend;