telers 1.0.0-beta.2

An asynchronous framework for Telegram Bot API written in Rust
Documentation
//! 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 mod base;
#[cfg(feature = "memory-storage")]
pub mod memory;
#[cfg(feature = "redis-storage")]
pub mod redis;

#[cfg(feature = "redis-storage")]
pub use self::redis::{KeyBuilderImpl, Redis};
#[allow(clippy::module_name_repetitions)]
pub use base::{Error, Storage, StorageKey};
#[cfg(feature = "memory-storage")]
pub use memory::Memory;