Port skybot hash plugin as a module

This commit is contained in:
Jean Chevronnet 2026-07-29 18:29:56 +00:00
parent 5e0ca7232a
commit 1c320ad0c3
4 changed files with 333 additions and 4 deletions

View file

@ -1,5 +1,6 @@
pub mod builtins;
pub mod dice;
pub mod hash;
pub mod weather;
use super::module::Module;
@ -8,6 +9,7 @@ pub fn all(network: &str) -> Vec<Box<dyn Module>> {
vec![
Box::new(builtins::Builtins),
Box::new(dice::Dice::new()),
Box::new(hash::Hash),
Box::new(weather::Weather::new(network)),
]
}