mirror of
https://github.com/Myxelium/Lunaris2.0.git
synced 2026-04-09 06:09:39 +00:00
15 lines
341 B
C#
15 lines
341 B
C#
using System.Threading.Tasks;
|
|
using Discord.WebSocket;
|
|
using Lunaris2.SlashCommand;
|
|
|
|
namespace Lunaris2.Helpers
|
|
{
|
|
public static class ClientReadyHandler
|
|
{
|
|
public static Task Client_Ready(this DiscordSocketClient client)
|
|
{
|
|
client.RegisterCommands();
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
} |