1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#[cfg(feature = "auth")]
pub use auth;
#[cfg(feature = "chat")]
pub use chat;
#[cfg(feature = "extensions")]
pub use extensions;
#[cfg(feature = "helix")]
pub use helix;
#[cfg(feature = "pubsub")]
pub use pubsub;
#[cfg(feature = "webhooks")]
pub use webhooks;
#[cfg(feature = "v5")]
pub use v5;
#[cfg(feature = "v5")]
pub mod kraken { pub use v5::*; } //"kraken" is a commonly known alias for v5, though it also used to apply to v3
#[cfg(feature = "graphql")]
pub use graphql;
#[cfg(feature = "tmi")]
pub use tmi;


#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}