blob: 41fcdec6c3a716cd304c8b29b53afbb4bb635c3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//! A collection of bridged support between the [`client`] module and other
//! modules.
//!
//! **Warning**: You likely _do not_ need to mess with anything in here. Beware.
//! This is lower-level functionality abstracted by the [`Client`].
//!
//! [`Client`]: ../struct.Client.html
//! [`client`]: ../
pub mod gateway;
#[cfg(feature = "voice")]
pub mod voice;
|