Discord.Net/docs/faq/text_commands/samples/runmode-cmdconfig.cs
2024-06-13 17:43:59 +12:00

10 lines
No EOL
205 B
C#

public class Setup
{
private readonly CommandService _command;
public Setup()
{
var config = new CommandServiceConfig{ DefaultRunMode = RunMode.Async };
_command = new CommandService(config);
}
}