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
//! A few common built-in utilities, like a help command and some permission checkers.
//!
//! Check out the following sub-modules for the built-in utilities:
//!
//! - [`cache`] - Built-in cache backends, like an in-memory cache and a Redis-backed cache.
//! - [`help`] - A help command for prefixed commands.
//! - [`permissions`] - Generic permission checkers, like [`is_in_dms`](permissions::is_in_dms) and
//!   [`is_in_server`](permissions::is_in_server).

pub mod cache;
pub mod help;
pub mod permissions;