1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
#![forbid(unsafe_code)]

#[cfg(feature = "client")]
pub mod client;

#[cfg(feature = "sms")]
pub mod sms;

#[cfg(feature = "news")]
pub mod news;

#[cfg(feature = "location")]
pub mod location;