Updated Module engine

This commit is contained in:
2024-08-10 20:27:59 +03:00
parent 18a059af0e
commit 9c98d2e219
16 changed files with 355 additions and 124 deletions

View File

@@ -1,4 +1,5 @@
using System.Threading.Tasks;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace DiscordBotCore.Interfaces.Modules
{
@@ -16,6 +17,8 @@ namespace DiscordBotCore.Interfaces.Modules
{
public ModuleType ModuleType { get; }
public string Name { get; }
public IDictionary<string, string> MethodMapping { get; }
public Task Initialize();
}
}