diff options
| author | acdenisSK <[email protected]> | 2018-03-29 12:10:43 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2018-03-29 12:11:23 +0200 |
| commit | 4c05e828d5191975ef1a5e1ac581b646a69d2c25 (patch) | |
| tree | fb583f88a1e5d192651b399aca1839f3f58e661e /src/client/bridge/gateway/shard_manager_monitor.rs | |
| parent | Add a connection timeout (diff) | |
| download | serenity-4c05e828d5191975ef1a5e1ac581b646a69d2c25.tar.xz serenity-4c05e828d5191975ef1a5e1ac581b646a69d2c25.zip | |
Refactor imports/exports to use nested groups and better formatting
Diffstat (limited to 'src/client/bridge/gateway/shard_manager_monitor.rs')
| -rw-r--r-- | src/client/bridge/gateway/shard_manager_monitor.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/client/bridge/gateway/shard_manager_monitor.rs b/src/client/bridge/gateway/shard_manager_monitor.rs index 9f9c04d..16cc001 100644 --- a/src/client/bridge/gateway/shard_manager_monitor.rs +++ b/src/client/bridge/gateway/shard_manager_monitor.rs @@ -1,6 +1,8 @@ use parking_lot::Mutex; -use std::sync::mpsc::Receiver; -use std::sync::Arc; +use std::sync::{ + mpsc::Receiver, + Arc +}; use super::{ShardManager, ShardManagerMessage}; /// The shard manager monitor does what it says on the tin -- it monitors the |