forcebot_rs/src/custom.rs
haruyuumei f8de595290
All checks were successful
ci/woodpecker/pr/cargo-checks Pipeline was successful
custom module update
2024-03-28 18:50:28 -03:00

27 lines
692 B
Rust

/*
`custom` will :
- be a starting refrence point for the bot instance to pull module definitions for
*/
use std::sync::Arc;
pub use crate::core::botinstance::BotInstance;
pub use crate::core::botmodules::ModulesManager;
// [ ] Load submodules
// mod experiments;
mod experimental;
mod thisguy;
// [ ] init() function that accepts bot instance - this is passed to init() on submodules
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.clone()).await;
thisguy::init(&mgr).await;
}