Discord Bot Scaffolding

This commit is contained in:
Brett Hewitson 2021-12-04 11:39:01 +10:00
parent ceb3ab73c4
commit c4bf4906ea
24 changed files with 1119 additions and 5 deletions

View file

@ -0,0 +1,11 @@
using ServerManagerTool.Discord.Delegates;
using System.Threading;
using System.Threading.Tasks;
namespace ServerManagerTool.Discord.Interfaces
{
public interface IServerManagerBot
{
Task StartAsync(string commandPrefix, string discordToken, string dataDirectory, HandleCommandDelegate handleCommandCallback, CancellationToken token);
}
}