コード例 #1
0
 public async Task StopDiscordAppAsync([Summary("Discord bot client id.")] ulong clientId)
 {
     if (await DiscordAppService.StopDiscordAppAsync(clientId))
     {
         await ReplyAsync(":white_check_mark: Successfully stopped the discord app.");
     }
     else
     {
         await ReplyAsync(":negative_squared_cross_mark: This discord app is not running!");
     }
 }