From 0d0a50c84b0159f2f43964445b1853848bf71f41 Mon Sep 17 00:00:00 2001 From: Brendan Golden Date: Sun, 3 Mar 2024 13:58:10 +0000 Subject: [PATCH] feat: added teh user facing command --- src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.rs b/src/main.rs index b726541..21bce57 100644 --- a/src/main.rs +++ b/src/main.rs @@ -61,6 +61,7 @@ impl EventHandler for Handler { .create_application_command(|command| commands::link_email::link::register(command)) .create_application_command(|command| commands::link_email::verify::register(command)) .create_application_command(|command| commands::add_minecraft::server::register(command)) + .create_application_command(|command| commands::add_minecraft::user::register(command)) }) .await { @@ -81,6 +82,7 @@ impl EventHandler for Handler { "link_wolves" => commands::link_email::link::run(&command, &ctx).await, "verify" => commands::link_email::verify::run(&command, &ctx).await, "add_minecraft" => commands::add_minecraft::server::run(&command, &ctx).await, + "link_minecraft" => commands::add_minecraft::user::run(&command, &ctx).await, _ => "not implemented :(".to_string(), };