#7 minecraft link #14

Merged
silver merged 7 commits from #7-minecraft-link into main 2024-03-03 15:05:43 +00:00
Showing only changes of commit 0d0a50c84b - Show all commits

View file

@ -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(),
};