Files
Discord.Net/src/Discord.Net.Commands/IModuleBase.cs

12 lines
200 B
C#

namespace Discord.Commands
{
internal interface IModuleBase
{
void SetContext(ICommandContext context);
void BeforeExecute();
void AfterExecute();
}
}