aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authorNathan Perry <avaglir@gmail.com>2019-01-24 21:48:39 -0500
committerNathan Perry <avaglir@gmail.com>2019-01-24 21:48:39 -0500
commit6ad374d089d917cba53a76a40f9fb9bc5793ceb2 (patch)
tree9f52f6c8aee66e8aae5d77e3af1757fdd0d8f4bd /src/commands/mod.rs
parent1a8a6eca29afe2178c6cf17abce9ab7e229ca26c (diff)
fix last of import inconsistencies
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index f2e577b..b73faef 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -1,18 +1,9 @@
-use std::{
- thread,
- time::Duration,
-};
-
use serenity::{
framework::StandardFramework,
- model::{
- channel::Message,
- id::ChannelId,
- },
- prelude::*,
+ model::id::ChannelId,
};
-use crate::{must_env_lookup, Result, TARGET_GUILD_ID};
+use crate::Result;
#[cfg(feature = "diesel")]
pub use self::meme::*;