diff options
| author | Nathan Perry <avaglir@gmail.com> | 2019-01-24 19:03:37 -0500 |
|---|---|---|
| committer | Nathan Perry <avaglir@gmail.com> | 2019-01-24 19:03:37 -0500 |
| commit | 928fd4314db88c623ea991de4e6e669027f57848 (patch) | |
| tree | 44099fa3a374e10c6e0e49c889a8197da50ac841 /src/commands/playback/mod.rs | |
| parent | 2c7c7c688593a758aed199ff7aedc54b3f2c34a1 (diff) | |
improve imports
Diffstat (limited to 'src/commands/playback/mod.rs')
| -rw-r--r-- | src/commands/playback/mod.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/commands/playback/mod.rs b/src/commands/playback/mod.rs index bbcbd74..efb2553 100644 --- a/src/commands/playback/mod.rs +++ b/src/commands/playback/mod.rs @@ -1,9 +1,12 @@ use either::{Left, Right}; -use serenity::voice::{LockedAudio, ytdl}; +use serenity::{ + voice::{LockedAudio, ytdl}, + model::id::ChannelId, + framework::standard::Args, +}; use super::*; pub use self::types::*; -use serenity::framework::standard::Args; mod types; |
