geekbot/Geekbot.net/Modules/Ping.cs
2017-04-17 16:58:48 +02:00

15 lines
No EOL
308 B
C#

using System.Threading.Tasks;
using Discord.Commands;
namespace Geekbot.net.Modules
{
public class Ping : ModuleBase
{
[Command("ping"), Summary("Pong.")]
public async Task Say()
{
await Task.Delay(5000);
await ReplyAsync("Pong");
}
}
}