aboutsummaryrefslogtreecommitdiff
path: root/src/ext/mod.rs
diff options
context:
space:
mode:
authorAustin Hellyer <[email protected]>2016-09-19 09:00:03 -0700
committerAustin Hellyer <[email protected]>2016-10-18 11:14:27 -0700
commit8fc8c81403c3daa187ba96a7d488a64db21463bf (patch)
tree81bc4890c28b08ce806f69084617066bce863c2d /src/ext/mod.rs
downloadserenity-8fc8c81403c3daa187ba96a7d488a64db21463bf.tar.xz
serenity-8fc8c81403c3daa187ba96a7d488a64db21463bf.zip
Initial commit
Diffstat (limited to 'src/ext/mod.rs')
-rw-r--r--src/ext/mod.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/ext/mod.rs b/src/ext/mod.rs
new file mode 100644
index 0000000..92fda62
--- /dev/null
+++ b/src/ext/mod.rs
@@ -0,0 +1,13 @@
+//! The set of extensions is functionality that is not required for a
+//! [`Client`] and/or [`Connection`] to properly function.
+//!
+//! These are flagged behind feature-gates and can be enabled and disabled.
+//!
+//! See each extension's module-level documentation for more information.
+//!
+//! [`Client`]: ../client/struct.Client.html
+//! [`Connection`]: ../client/struct.Connection.html
+
+pub mod framework;
+pub mod state;
+pub mod voice;