d_engine_server/storage/adaptors/mod.rs
1/// File-based state machine implementation.
2///
3/// Provides a simple file-backed storage backend for development and testing.
4pub mod file;
5pub use file::*;
6
7/// RocksDB-based state machine implementation.
8///
9/// Production-grade storage backend using RocksDB for high-performance persistence.
10#[cfg(feature = "rocksdb")]
11pub mod rocksdb;
12
13#[cfg(feature = "rocksdb")]
14pub use rocksdb::*;