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

7 lines
No EOL
196 B
C#

[Command("process", RunMode = RunMode.Async)]
public async Task ProcessAsync(string input)
{
// Does heavy calculation here.
await Task.Delay(TimeSpan.FromMinute(1));
await ReplyAsync(input);
}