Files
Lunaris2.0/Bot/Helpers/CommandServiceSetup.cs
2024-04-13 20:04:51 +02:00

12 lines
217 B
C#

using Discord.Commands;
namespace Lunaris2.Helpers
{
public static class CommandServiceSetup
{
public static CommandService Setup()
{
return new CommandService();
}
}
}