WIP: TextMods-Module #58
2 changed files with 7 additions and 5 deletions
|
@ -13,6 +13,7 @@ pub use crate::core::botmodules::ModulesManager;
|
|||
|
||||
// mod experiments;
|
||||
mod experimental;
|
||||
mod text_mods;
|
||||
|
||||
// [ ] init() function that accepts bot instance - this is passed to init() on submodules
|
||||
|
||||
|
@ -20,6 +21,7 @@ pub async fn init(mgr: Arc<ModulesManager>) {
|
|||
// Modules initializer loads modules into the bot
|
||||
// this is achieved by calling submodules that also have fn init() defined
|
||||
|
||||
// experiments::init(mgr).await
|
||||
experimental::init(mgr).await;
|
||||
}
|
||||
experimental::init(mgr.clone()).await;
|
||||
text_mods::init(Arc::clone(&mgr)).await;
|
||||
|
||||
}
|
|
@ -3,12 +3,12 @@ use std::sync::Arc;
|
|||
use crate::core::{bot_actions::*, botlog};
|
||||
use crate::core::botmodules::{BotActionTrait, BotCommand, BotModule, Listener, ModulesManager};
|
||||
use crate::core::identity::UserRole::*;
|
||||
use rand::{thread_rng, Rng};
|
||||
//use rand::{thread_rng, Rng};
|
||||
use tokio::time::{sleep, Duration};
|
||||
|
||||
|
||||
|
||||
pub async fn init(mgr: &Arc<ModulesManager>) {
|
||||
pub async fn init(mgr: Arc<ModulesManager>) {
|
||||
|
||||
// Example Working BotCommand Add
|
||||
BotCommand {
|
||||
|
|
Loading…
Reference in a new issue