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