geekbot/Geekbot.net/Modules/Ping.cs
2017-04-12 21:49:04 +02:00

15 lines
No EOL
324 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()
{
// ReplyAsync is a method on ModuleBase
await ReplyAsync("Pong");
}
}
}