mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 17:19:00 +03:00
12 lines
362 B
C#
12 lines
362 B
C#
|
using Discord.Commands;
|
|||
|
|
|||
|
namespace Boyfriend.Commands;
|
|||
|
|
|||
|
public class PingModule : ModuleBase<SocketCommandContext> {
|
|||
|
|
|||
|
[Command("ping")]
|
|||
|
[Summary("Измеряет время обработки REST-запроса")]
|
|||
|
[Alias("пинг")]
|
|||
|
public async Task Run()
|
|||
|
=> await ReplyAsync(Utils.GetBeep() + Boyfriend.Client.Latency + "мс");
|
|||
|
}
|