mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
Discord Bot Scaffolding
This commit is contained in:
parent
ceb3ab73c4
commit
c4bf4906ea
24 changed files with 1119 additions and 5 deletions
11
src/ServerManager.Discord/Interfaces/IServerManagerBot.cs
Normal file
11
src/ServerManager.Discord/Interfaces/IServerManagerBot.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue