1
0
Fork 1
mirror of https://github.com/TeamOctolings/Octobot.git synced 2025-01-31 17:19:00 +03:00
Octobot/Boyfriend/Commands/PingModule.cs

14 lines
441 B
C#
Raw Normal View History

2021-12-07 15:52:37 +03:00
using Discord.Commands;
2021-12-07 21:27:27 +03:00
// ReSharper disable UnusedType.Global
// ReSharper disable UnusedMember.Global
2021-12-07 15:52:37 +03:00
namespace Boyfriend.Commands;
public class PingModule : ModuleBase<SocketCommandContext> {
[Command("ping")]
[Summary("Измеряет время обработки REST-запроса")]
[Alias("пинг")]
public async Task Run()
2021-12-10 14:25:29 +03:00
=> await ReplyAsync($"{Utils.GetBeep()}{Boyfriend.Client.Latency}мс");
2021-12-07 15:52:37 +03:00
}