Port skybot hash plugin as a module
This commit is contained in:
parent
5e0ca7232a
commit
1c320ad0c3
4 changed files with 333 additions and 4 deletions
|
|
@ -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)),
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue