ttv-rs 0.1.0

A hopefully-eventually-comprehensive interface to the Twitch API. Somewhat modeled after Twitch4j.
Documentation
#[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);
    }
}