This commit is contained in:
Nikita Sivukhin
2025-11-12 13:19:31 +04:00
parent 6f7edcaddd
commit a25e3e76eb
5 changed files with 56 additions and 181 deletions

View File

@@ -1,7 +1,7 @@
pub mod database_replay_generator;
pub mod database_sync_engine;
pub mod database_sync_lazy_storage;
pub mod database_sync_operations;
pub mod database_sync_partial_storage;
pub mod database_tape;
pub mod errors;
pub mod io_operations;
@@ -10,6 +10,9 @@ pub mod server_proto;
pub mod types;
pub mod wal_session;
// #[cfg(unix)]
pub mod sparse_io;
pub type Result<T> = std::result::Result<T, errors::Error>;
#[cfg(test)]