1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! Rust wrappers for the Mixer APIs.
//!
//! Use the `constellation` module for communicating asynchronously with the real-time
//! [Constellation] endpoint, and the `rest` module for communicating synchronously with
//! the [Core REST API].
//!
//! [Constellation]: https://dev.mixer.com/reference/constellation
//! [Core REST API]: https://dev.mixer.com/rest/index.html

#![warn(missing_docs)]

pub mod chat;
pub mod constellation;
mod internal;
pub mod oauth;
pub mod rest;

pub use chat::ChatClient;
pub use constellation::ConstellationClient;
pub use rest::REST;