diff --git a/src/lib.rs b/src/lib.rs index aa73302..4fa8f57 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,9 +1,15 @@ +#[cfg(feature = "client")] pub mod api; +#[cfg(feature = "client")] pub mod errors; +#[cfg(feature = "client")] pub mod gateway; +#[cfg(feature = "client")] pub mod instance; +#[cfg(feature = "client")] pub mod limit; pub mod types; +#[cfg(feature = "client")] pub mod voice; use url::{ParseError, Url};