geekbot/Geekbot.net/Modules/Ping.cs

15 lines
324 B
C#
Raw Normal View History

2017-04-12 21:49:04 +02:00
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");
}
}
}