diff options
Diffstat (limited to 'src/commands/optional/mod.rs')
| -rw-r--r-- | src/commands/optional/mod.rs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/commands/optional/mod.rs b/src/commands/optional/mod.rs index 451deeb..2be1fef 100644 --- a/src/commands/optional/mod.rs +++ b/src/commands/optional/mod.rs @@ -1,5 +1,11 @@ +use crate::Data; + +use color_eyre::eyre::Report; +use poise::Command; + mod copypasta; mod teawiespam; -pub use copypasta::copypasta; -pub use teawiespam::teawiespam; +pub fn to_commands() -> Vec<Command<Data, Report>> { + vec![copypasta::copypasta(), teawiespam::teawiespam()] +} |
