aboutsummaryrefslogtreecommitdiff
path: root/src/commands/mod.rs
diff options
context:
space:
mode:
authorNathan Perry <avaglir@gmail.com>2019-01-24 19:03:37 -0500
committerNathan Perry <avaglir@gmail.com>2019-01-24 19:03:37 -0500
commit928fd4314db88c623ea991de4e6e669027f57848 (patch)
tree44099fa3a374e10c6e0e49c889a8197da50ac841 /src/commands/mod.rs
parent2c7c7c688593a758aed199ff7aedc54b3f2c34a1 (diff)
improve imports
Diffstat (limited to 'src/commands/mod.rs')
-rw-r--r--src/commands/mod.rs20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs
index bf55b90..db304e3 100644
--- a/src/commands/mod.rs
+++ b/src/commands/mod.rs
@@ -1,10 +1,18 @@
+use std::{
+ thread,
+ time::Duration,
+};
+
+use serenity::{
+ prelude::*,
+ framework::StandardFramework,
+ model::{
+ channel::Message,
+ id::MessageId,
+ },
+};
+
use crate::{must_env_lookup, Result, TARGET_GUILD_ID};
-use serenity::framework::StandardFramework;
-use serenity::model::channel::Message;
-use serenity::model::id::ChannelId;
-use serenity::prelude::*;
-use std::thread;
-use std::time::Duration;
mod playback;
mod sound;