diff options
| author | Fuwn <[email protected]> | 2020-11-01 00:24:43 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2020-11-01 00:24:43 -0700 |
| commit | 85e486db6237870b585f07cfd4ea26af4a65bf85 (patch) | |
| tree | e09d4ba0a498cdca612cc5e7ccf7fd2379fefb53 /src/lib.rs | |
| parent | feat (desc) (diff) | |
| download | dep-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.rs | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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; |