diff options
| author | Zeyla Hellyer <[email protected]> | 2017-12-16 13:20:08 -0800 |
|---|---|---|
| committer | Zeyla Hellyer <[email protected]> | 2017-12-16 13:20:08 -0800 |
| commit | 1a178fad3ce28fe2b8f1e525446570afab8f766c (patch) | |
| tree | 1fd6c36172af7643de788b2727488c20b43d4286 /src/voice/handler.rs | |
| parent | Attempt to restart failed shard boots (diff) | |
| download | serenity-1a178fad3ce28fe2b8f1e525446570afab8f766c.tar.xz serenity-1a178fad3ce28fe2b8f1e525446570afab8f766c.zip | |
Fix voice feature compilation
Diffstat (limited to 'src/voice/handler.rs')
| -rw-r--r-- | src/voice/handler.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/voice/handler.rs b/src/voice/handler.rs index d1ef93e..94f7c07 100644 --- a/src/voice/handler.rs +++ b/src/voice/handler.rs @@ -1,5 +1,6 @@ use constants::VoiceOpCode; -use model::{ChannelId, GuildId, UserId, VoiceState}; +use model::id::{ChannelId, GuildId, UserId}; +use model::voice::VoiceState; use serde_json::Value; use std::sync::mpsc::{self, Sender as MpscSender}; use super::connection_info::ConnectionInfo; |