summaryrefslogtreecommitdiff
path: root/src/commands/optional/mod.rs
diff options
context:
space:
mode:
authorSkye <[email protected]>2023-12-28 18:12:36 +0900
committerGitHub <[email protected]>2023-12-28 09:12:36 +0000
commit67dd9a1f2613e7781fca3c309b6b3b93804dab18 (patch)
tree0ea138463227a032084d4274cbea5eaf52e97a82 /src/commands/optional/mod.rs
parenta1913ad35602c54483c502f72815e4bc2c2f38c6 (diff)
opt-commands: add uwurandom (#112)
* opt-commands: add uwurandom * Apply suggestions from code review Co-authored-by: seth <[email protected]> * opt-commands: set random default value for uwurandom --------- Co-authored-by: seth <[email protected]>
Diffstat (limited to 'src/commands/optional/mod.rs')
-rw-r--r--src/commands/optional/mod.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/commands/optional/mod.rs b/src/commands/optional/mod.rs
index 2be1fef..8ef7757 100644
--- a/src/commands/optional/mod.rs
+++ b/src/commands/optional/mod.rs
@@ -5,7 +5,12 @@ use poise::Command;
mod copypasta;
mod teawiespam;
+mod uwurandom;
pub fn to_commands() -> Vec<Command<Data, Report>> {
- vec![copypasta::copypasta(), teawiespam::teawiespam()]
+ vec![
+ copypasta::copypasta(),
+ teawiespam::teawiespam(),
+ uwurandom::uwurandom(),
+ ]
}