aboutsummaryrefslogtreecommitdiff
path: root/src/client/mod.rs
diff options
context:
space:
mode:
authorAustin Hellyer <[email protected]>2016-11-13 19:28:13 -0800
committerAustin Hellyer <[email protected]>2016-11-14 18:32:10 -0800
commit7d22fb2a9c70e5e517b359875a0157f72e352e43 (patch)
treeca3bcb3a76f68960563d3c38d45e21f493ce32f8 /src/client/mod.rs
parentAdd internal module (diff)
downloadserenity-7d22fb2a9c70e5e517b359875a0157f72e352e43.tar.xz
serenity-7d22fb2a9c70e5e517b359875a0157f72e352e43.zip
Add voice connection support
Diffstat (limited to 'src/client/mod.rs')
-rw-r--r--src/client/mod.rs10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/client/mod.rs b/src/client/mod.rs
index 580ae74..661d477 100644
--- a/src/client/mod.rs
+++ b/src/client/mod.rs
@@ -41,7 +41,11 @@ mod dispatch;
mod event_store;
mod login_type;
-pub use self::connection::{Connection, ConnectionError};
+pub use self::connection::{
+ Connection,
+ ConnectionError,
+ Status as ConnectionStatus
+};
pub use self::context::Context;
pub use self::login_type::LoginType;
@@ -53,10 +57,10 @@ use std::collections::{BTreeMap, HashMap};
use std::sync::{Arc, Mutex};
use std::thread;
use std::time::Duration;
-use ::model::*;
-use ::internal::prelude::*;
use ::ext::framework::Framework;
use ::ext::state::State;
+use ::internal::prelude::*;
+use ::model::*;
lazy_static! {
/// The STATE is a mutable lazily-initialized static binding. It can be