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