Files
EventDiscordBot/EventBot/Modules/TestingModule.cs
2019-06-18 19:17:06 +03:00

19 lines
411 B
C#

using Discord.Commands;
using EventBot.Attributes;
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading.Tasks;
namespace EventBot.Modules
{
public class TestingModule: ModuleBase<SocketCommandContext>
{
[Command("ping")]
[Summary("Test if bot is working.")]
[NoHelp]
public Task SayAsync()
=> ReplyAsync("Pong!");
}
}