diff options
| author | acdenisSK <[email protected]> | 2017-07-27 06:42:48 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-07-27 07:30:23 +0200 |
| commit | 550030264952f0e0043b63f4582bb817ef8bbf37 (patch) | |
| tree | b921e2f78fd603a5ca671623083a32806fd16090 /src/prelude.rs | |
| parent | Use a consistent indentation style (diff) | |
| download | serenity-550030264952f0e0043b63f4582bb817ef8bbf37.tar.xz serenity-550030264952f0e0043b63f4582bb817ef8bbf37.zip | |
rustfmt
Diffstat (limited to 'src/prelude.rs')
| -rw-r--r-- | src/prelude.rs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/prelude.rs b/src/prelude.rs index c7d8537..ff27bb6 100644 --- a/src/prelude.rs +++ b/src/prelude.rs @@ -14,16 +14,16 @@ //! //! [`serenity::Error`]: ../enum.Error.html -pub use ::error::{Error as SerenityError}; -pub use ::model::Mentionable; +pub use error::Error as SerenityError; +pub use model::Mentionable; -#[cfg(feature="client")] -pub use ::client::{Context, Client, ClientError as ClientError, EventHandler}; -#[cfg(feature="gateway")] -pub use ::gateway::GatewayError; -#[cfg(feature="http")] -pub use ::http::HttpError; -#[cfg(feature="model")] -pub use ::model::ModelError; -#[cfg(feature="voice")] -pub use ::voice::VoiceError; +#[cfg(feature = "client")] +pub use client::{Client, ClientError as ClientError, Context, EventHandler}; +#[cfg(feature = "gateway")] +pub use gateway::GatewayError; +#[cfg(feature = "http")] +pub use http::HttpError; +#[cfg(feature = "model")] +pub use model::ModelError; +#[cfg(feature = "voice")] +pub use voice::VoiceError; |