//! This module contains the storage implementations for the FSM.
//!
//! Storage is used to store state and data of the user.
//! Be aware, storage is part of the FSM pattern, so don't use it for other purposes like database and store user data not related with state machine.
//!
//! Ready-made implementations:
//! * Memory (feature: `memory-storage`):
//! In-memory storage implementation.
//! This is a simple thread-safe in-memory storage implementation used for testing purposes usually, because it doesn't persist data between restarts
//! and isn't recommended for production use.
//! * Redis (feature: `redis-storage`):
//! Redis storage implementation.
//! This is a thread-safe Redis storage implementation that persists data between restarts.
//! This is the recommended storage implementation for production use.
pub use ;
pub use ;
pub use Memory;