From 05e0831f7926dd4afda8e72c6ea5aa7a466b6bea Mon Sep 17 00:00:00 2001 From: uku Date: Fri, 13 Oct 2023 11:11:03 +0200 Subject: add random_shiggy command --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index 8a3aa94..51f0f3c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -111,6 +111,7 @@ impl EventHandler for Handler { .await } "random_lore" => commands::random_lore::run(&command.data.options), + "random_shiggy" => commands::random_shiggy::run(&command.data.options).await, "random_teawie" => commands::random_teawie::run(&command.data.options).await, _ => "not implemented :(".to_string(), }; @@ -145,6 +146,7 @@ impl EventHandler for Handler { .create_application_command(commands::bottom::register) .create_application_command(commands::convert::register) .create_application_command(commands::random_lore::register) + .create_application_command(commands::random_shiggy::register) .create_application_command(commands::random_teawie::register) }) .await; -- cgit v1.2.3