aboutsummaryrefslogtreecommitdiff
path: root/src/model/mod.rs
diff options
context:
space:
mode:
authoracdenisSK <[email protected]>2016-12-07 19:10:21 +0100
committerzeyla <[email protected]>2016-12-07 10:10:21 -0800
commitf69512beaa157775accd4392295dba112adcf1df (patch)
tree0944aeabdec8609393f78b9ec257dc5d09d4f6c0 /src/model/mod.rs
parentAllow mentionable structs to be used as command arguments (diff)
downloadserenity-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.rs2
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::*;