aboutsummaryrefslogtreecommitdiff
path: root/src/internal/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/internal/mod.rs
parentAdd internal module (diff)
downloadserenity-7d22fb2a9c70e5e517b359875a0157f72e352e43.tar.xz
serenity-7d22fb2a9c70e5e517b359875a0157f72e352e43.zip
Add voice connection support
Diffstat (limited to 'src/internal/mod.rs')
-rw-r--r--src/internal/mod.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/internal/mod.rs b/src/internal/mod.rs
index b9d7209..9dd4676 100644
--- a/src/internal/mod.rs
+++ b/src/internal/mod.rs
@@ -1 +1,8 @@
pub mod prelude;
+pub mod ws_impl;
+
+#[cfg(feature = "voice")]
+mod timer;
+
+#[cfg(feature = "voice")]
+pub use self::timer::Timer;