コード例 #1
0
 public static async Task <bool> CheckCooldown(this ISocketMessageChannel channel, string tag, int seconds)
 => await CooldownService.CheckCooldown("discord", Convert.ToInt64(channel.Id), tag, seconds, true);
コード例 #2
0
 public static async Task <bool> CheckCooldown(this SocketUser user, string tag, int seconds)
 => await CooldownService.CheckCooldown("discord", Convert.ToInt64(user.Id), tag, seconds, false);