12 lines
200 B
C#
12 lines
200 B
C#
namespace Discord.Commands
|
|
{
|
|
internal interface IModuleBase
|
|
{
|
|
void SetContext(ICommandContext context);
|
|
|
|
void BeforeExecute();
|
|
|
|
void AfterExecute();
|
|
}
|
|
}
|