diff options
| author | seth <[email protected]> | 2023-11-15 23:54:05 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-11-16 05:41:54 +0000 |
| commit | 387b7dee5c022dab74bd7afc920b58793b8308de (patch) | |
| tree | cef0287106ba6e095b092db8d752395a9341f879 /src/commands/mod.rs | |
| parent | fe9bcd7dc1833d5ba5ad75a84794217d8d840d56 (diff) | |
refactor: merge all random commands
Diffstat (limited to 'src/commands/mod.rs')
| -rw-r--r-- | src/commands/mod.rs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/commands/mod.rs b/src/commands/mod.rs index 08cfc3d..b6130ab 100644 --- a/src/commands/mod.rs +++ b/src/commands/mod.rs @@ -2,9 +2,7 @@ pub mod ask; pub mod bing; pub mod convert; pub mod copypasta; -pub mod random_lore; -pub mod random_shiggy; -pub mod random_teawie; +pub mod random; pub mod teawiespam; pub mod version; @@ -16,9 +14,7 @@ pub fn to_global_commands() -> Vec<Command<Data, Error>> { ask::ask(), bing::bing(), convert::convert(), - random_lore::random_lore(), - random_shiggy::random_shiggy(), - random_teawie::random_teawie(), + random::random(), copypasta::copypasta(), teawiespam::teawiespam(), version::version(), |
