sos_server_storage/lib.rs
1#![deny(missing_docs)]
2#![forbid(unsafe_code)]
3#![cfg_attr(all(doc, CHANNEL_NIGHTLY), feature(doc_auto_cfg))]
4//! Server storage for a backend target.
5mod error;
6
7mod database;
8mod filesystem;
9pub mod server_helpers;
10mod storage;
11mod sync;
12mod traits;
13
14pub use error::Error;
15pub use storage::ServerStorage;
16pub use traits::ServerAccountStorage;
17
18/// Result type for the server module.
19pub(crate) type Result<T> = std::result::Result<T, Error>;