aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authorNathan Perry <np@nathanperry.dev>2019-11-17 22:55:01 -0500
committerNathan Perry <np@nathanperry.dev>2019-11-17 22:55:01 -0500
commitc068e82d2b6341cf7896bfc2e1fd4683f28d67b4 (patch)
treef2372f142c942f6b699bf01fdffcd210b9201796 /src/commands/mod.rs
parent8b2ccf363ac6894c21e256844948c8327645f0db (diff)
remove a bunch of unused imports
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index 5c23418..82b359a 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -9,12 +9,11 @@ use serenity::{
use crate::{
util::CtxExt,
};
-#[cfg(feature = "games")]
-use crate::game::*;
pub use self::{
playback::*,
sound_levels::*,
+ roll::roll,
};
#[cfg(feature = "diesel")]
pub use self::meme::*;
@@ -30,7 +29,7 @@ group!({
only_in: "guild",
},
commands: [
- roll::roll,
+ roll,
],
});