diff options
| author | acdenisSK <[email protected]> | 2016-12-07 19:10:21 +0100 |
|---|---|---|
| committer | zeyla <[email protected]> | 2016-12-07 10:10:21 -0800 |
| commit | f69512beaa157775accd4392295dba112adcf1df (patch) | |
| tree | 0944aeabdec8609393f78b9ec257dc5d09d4f6c0 /src/model/mod.rs | |
| parent | Allow mentionable structs to be used as command arguments (diff) | |
| download | serenity-f69512beaa157775accd4392295dba112adcf1df.tar.xz serenity-f69512beaa157775accd4392295dba112adcf1df.zip | |
Change all try's into ?s
This breaks compatibility with < 1.13, but we didn't support that anyway.
Diffstat (limited to 'src/model/mod.rs')
| -rw-r--r-- | src/model/mod.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/model/mod.rs b/src/model/mod.rs index b5eda3c..298912f 100644 --- a/src/model/mod.rs +++ b/src/model/mod.rs @@ -26,7 +26,6 @@ mod guild; mod id; mod misc; mod user; -mod voice; #[cfg(feature = "methods")] mod invite; @@ -40,7 +39,6 @@ pub use self::id::*; pub use self::misc::*; pub use self::permissions::Permissions; pub use self::user::*; -pub use self::voice::*; #[cfg(feature = "methods")] pub use self::invite::*; |