Inital bot commit

This commit is contained in:
Karolis2011
2019-06-18 19:17:06 +03:00
commit 81a82cbb5b
25 changed files with 1346 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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!");
}
}