Discord.Net/docs/faq/text_commands/samples/runmode-cmdconfig.cs

10 lines
205 B
C#
Raw Normal View History

2024-06-12 22:43:59 -07:00
public class Setup
{
private readonly CommandService _command;
public Setup()
{
var config = new CommandServiceConfig{ DefaultRunMode = RunMode.Async };
_command = new CommandService(config);
}
}