discord bot status code c#
//in commands.cs file
public class Help : ModuleBase<SocketCommandContext>
{
[Command("test")]
public async Task TestAsync()
{
await Context.Client.SetGameAsync("Game");
await Task.CompletedTask;
}
}
}