mirror of
https://github.com/Myxelium/Lunaris2.0.git
synced 2026-04-11 07:09:39 +00:00
19 lines
614 B
C#
19 lines
614 B
C#
using Discord.WebSocket;
|
|
|
|
namespace Lunaris2.SlashCommand;
|
|
|
|
public static class SlashCommandRegistration
|
|
{
|
|
public static void RegisterCommands(this DiscordSocketClient client)
|
|
{
|
|
RegisterCommand(client, Command.Hello.Name, Command.Hello.Description);
|
|
RegisterCommand(client, Command.Goodbye.Name, Command.Goodbye.Description);
|
|
}
|
|
|
|
private static void RegisterCommand(DiscordSocketClient client, string commandName, string commandDescription)
|
|
{
|
|
var command = new SlashCommandBuilder(commandName, commandDescription);
|
|
_ = command.CreateSlashCommand(client);
|
|
}
|
|
}
|