1
2
3
4
5
6
7
8
9
#[cfg(feature = "actor")]
/// An implementation of [`ExpiryStore`](actix_storage::dev::ExpiryStore) based on actix
/// and sled, requires `["actor"]` feature
pub mod actor;
mod basic;

pub use basic::SledStore;

pub use sled::{Config as SledConfig, Error as SledError};