14 lines
326 B
C#
14 lines
326 B
C#
using Discord.Commands;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sean.Modules
|
|
{
|
|
public class PingModule : ModuleBase<SocketCommandContext>
|
|
{
|
|
#region Methods
|
|
[Command("ping")]
|
|
[Summary("Ping pong !")]
|
|
public Task PongAsync() => ReplyAsync("Pong !");
|
|
#endregion Methods
|
|
}
|
|
} |