serenity 0.5.8

A Rust library for the Discord API.
Documentation
//! The model prelude re-exports all types in the model sub-modules.
//!
//! This allows for quick and easy access to all of the model types.
//!
//! # Examples
//!
//! Import all model types into scope:
//!
//! ```rust,no_run
//! use serenity::model::prelude::*;
//! ```

pub use super::application::*;
pub use super::channel::*;
pub use super::event::*;
pub use super::guild::*;
pub use super::gateway::*;
pub use super::id::*;
pub use super::invite::*;
pub use super::misc::*;
pub use super::permissions::*;
pub use super::user::*;
pub use super::voice::*;
pub use super::webhook::*;
pub use super::*;