aboutsummaryrefslogtreecommitdiff
path: root/src/ext/mod.rs
blob: bb87911269bcbae26d2985046cca1bed68c589c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The set of extensions is functionality that is not required for a
//! [`Client`] and/or [`Connection`] to properly function.
//!
//! These are flagged behind feature-gates and can be enabled and disabled.
//!
//! See each extension's module-level documentation for more information.
//!
//! [`Client`]: ../client/struct.Client.html
//! [`Connection`]: ../client/struct.Connection.html

pub mod framework;
pub mod state;
#[cfg(feature="voice")]
pub mod voice;