Skip to main content

ethrex_storage/backend/
mod.rs

1//! This module contains the implementations of the [`StorageBackend`](crate::api::StorageBackend) trait for our
2//! different databases.
3
4/// In memory backend - most useful for testing
5pub mod in_memory;
6/// RocksDB backend
7#[cfg(feature = "rocksdb")]
8pub mod rocksdb;