ModuleBase should map to ICommandContext

This commit is contained in:
RogueException
2017-04-08 18:38:58 -03:00
parent 39b0a998c8
commit aca8def0cb

View File

@@ -3,7 +3,7 @@ using System.Threading.Tasks;
namespace Discord.Commands
{
public abstract class ModuleBase : ModuleBase<CommandContext> { }
public abstract class ModuleBase : ModuleBase<ICommandContext> { }
public abstract class ModuleBase<T> : IModuleBase
where T : class, ICommandContext