Lock client specific code behind feature

This commit is contained in:
Zertex 2023-05-26 10:16:08 -04:00
parent e0518db6a9
commit 38503aea57
1 changed files with 6 additions and 0 deletions

View File

@ -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};