1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! A collection of data types for working with various Spectacles modules.

#[macro_use] extern crate serde_derive;

pub use user::User;
pub use snowflake::*;

#[derive(Serialize)]
pub struct NoQuery;


mod user;
pub mod guild;
pub mod channel;
pub mod voice;
pub mod invite;
pub mod gateway;
pub mod presence;
pub mod message;
pub mod snowflake;