//! This module contains the implementations of the [`StorageBackend`](crate::api::StorageBackend) trait for our
//! different databases.
/// In memory backend - most useful for testing
pubmodin_memory;/// RocksDB backend
#[cfg(feature ="rocksdb")]pubmodrocksdb;