mirror of
https://github.com/Myxelium/Lunaris2.0.git
synced 2026-04-23 06:15:09 +00:00
Working chatbot
This commit is contained in:
@@ -21,6 +21,23 @@ public static class Command
|
||||
public const string Description = "Say goodbye to the bot!";
|
||||
}
|
||||
|
||||
public static class Chat
|
||||
{
|
||||
public const string Name = "chat";
|
||||
public const string Description = "Chat with the bot!";
|
||||
|
||||
public static readonly List<SlashCommandOptionBuilder>? Options = new()
|
||||
{
|
||||
new SlashCommandOptionBuilder
|
||||
{
|
||||
Name = "message",
|
||||
Description = "Chat with Lunaris",
|
||||
Type = ApplicationCommandOptionType.String,
|
||||
IsRequired = true
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
public static class Join
|
||||
{
|
||||
public const string Name = "join";
|
||||
|
||||
Reference in New Issue
Block a user