aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorFuwn <[email protected]>2020-11-01 00:24:43 -0700
committerFuwn <[email protected]>2020-11-01 00:24:43 -0700
commit85e486db6237870b585f07cfd4ea26af4a65bf85 (patch)
treee09d4ba0a498cdca612cc5e7ccf7fd2379fefb53 /src/lib.rs
parentfeat (desc) (diff)
downloaddep-core-next-85e486db6237870b585f07cfd4ea26af4a65bf85.tar.xz
dep-core-next-85e486db6237870b585f07cfd4ea26af4a65bf85.zip
feat (desc)
feat: - implement somewhat ok but not done version of lavalink - new macros - plugin system - random hi plugin
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3ec9c47..4684d25 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,4 @@
-#![recursion_limit = "128"]
+#![recursion_limit = "128"] // 256
#![allow(proc_macro_derive_resolution_fallback)]
#![feature(decl_macro, async_closure)]
@@ -6,6 +6,7 @@
#[macro_use] extern crate lazy_static;
#[macro_use] extern crate log;
#[macro_use] extern crate serde_derive;
+
extern crate serenity;
extern crate chrono;
extern crate forecast;
@@ -25,12 +26,14 @@ extern crate typemap;
extern crate urbandictionary;
// extern crate rocket_contrib;
// extern crate tokio;
+// extern crate lavalink_rs;
pub mod macros;
+pub mod modules;
+
pub mod core;
pub mod db;
-pub mod modules;
// pub mod webserver;
-pub mod wisp; // Client
+pub mod wisp; // The Client
pub use crate::wisp::WispClient;