geekbot/Geekbot.net/Modules/Ping.cs

20 lines
410 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()
{
await ReplyAsync("Pong");
}
[Command("hui"), Summary("hui!!!.")]
public async Task Hui()
{
await ReplyAsync("hui!!!");
}
2017-04-12 21:49:04 +02:00
}
}