dyncord 0.13.6

A high-level, ergonomic, batteries-included Discord bot library for Rust. WIP.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Built-in implementations of cache backends.
//!
//! There's two built-in cache backends:
//! 
//! - [In-Memory](inmemory): Enabled with the `builtin-cache-inmemory` feature flag.
//! - [Redis](redis): Enabled with the `builtin-cache-redis` feature flag.
//! 
//! Check their documentations for information on how to use each of them.

#[cfg(feature = "builtin-cache-inmemory")]
pub mod inmemory;

#[cfg(feature = "builtin-cache-redis")]
pub mod redis;