diff options
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/dispatch.rs | 2 | ||||
| -rw-r--r-- | src/client/mod.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/client/dispatch.rs b/src/client/dispatch.rs index ad3660e..cb33cb1 100644 --- a/src/client/dispatch.rs +++ b/src/client/dispatch.rs @@ -12,7 +12,7 @@ use chrono::{Timelike, Utc}; use tokio_core::reactor::Handle; #[cfg(feature = "framework")] -use Framework; +use framework::Framework; #[cfg(feature = "cache")] use super::CACHE; diff --git a/src/client/mod.rs b/src/client/mod.rs index 69d3903..619653c 100644 --- a/src/client/mod.rs +++ b/src/client/mod.rs @@ -37,7 +37,7 @@ pub use CACHE; use self::dispatch::dispatch; use std::sync::{self, Arc}; -use std::sync::atomic::{AtomicBool, Ordering, ATOMIC_BOOL_INIT}; +use std::sync::atomic::{ATOMIC_BOOL_INIT, AtomicBool, Ordering}; use parking_lot::Mutex; use tokio_core::reactor::Core; use futures; @@ -52,7 +52,7 @@ use internal::ws_impl::ReceiverExt; use model::event::*; #[cfg(feature = "framework")] -use Framework; +use framework::Framework; static HANDLE_STILL: AtomicBool = ATOMIC_BOOL_INIT; |