discord-rpc-client/src/lib.rs

23 lines
349 B
Rust
Raw Normal View History

2018-03-22 15:15:47 -04:00
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate serde_json;
2018-03-24 10:15:48 -04:00
extern crate byteorder;
extern crate uuid;
extern crate libc;
2018-03-22 13:12:41 -04:00
#[macro_use]
mod macros;
mod connection;
2018-03-22 15:54:18 -04:00
mod models;
2018-03-22 13:12:41 -04:00
pub mod client;
pub use client::Client;
pub use models::prelude;
#[cfg(unix)]
pub use connection::UnixConnection;