discord-rpc-client/src/lib.rs

24 lines
346 B
Rust
Raw Normal View History

#![feature(getpid)]
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;
extern crate byte;
extern crate uuid;
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;