namespace NadekoBot.Common.ModuleBehaviors;
///
/// Executed if no command was found for this message
///
public interface IExecNoCommand : IBehavior
{
///
/// Executed at the end of the lifecycle if no command was found
/// →
/// →
/// →
/// [ | **]
///
///
///
/// A task representing completion
Task ExecOnNoCommandAsync(IGuild guild, IUserMessage msg);
}