namespace NadekoBot.Common.ModuleBehaviors; /// /// This interface's method is executed after the command successfully finished execution. /// ***There is no support for this method in NadekoBot services.*** /// It is only meant to be used in medusa system /// public interface IExecPostCommand { /// /// Executed after a command was successfully executed /// → /// → /// → /// [** | ] /// /// Command context /// Module name /// Command name /// A task representing completion ValueTask ExecPostCommandAsync(ICommandContext ctx, string moduleName, string commandName); }