discord_rpc_client/lib.rs
1// Cannot remove this *macro_use*, would break derive inside of macros
2#[macro_use] extern crate serde_derive;
3
4
5#[macro_use]
6mod macros;
7mod utils;
8mod connection;
9mod event_handler;
10pub mod error;
11pub mod models;
12pub mod client;
13
14pub use self::client::Client;
15pub use self::error::{Error, Result};
16pub use self::models::Event;