mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
13 lines
235 B
C#
13 lines
235 B
C#
using NadekoBot.Common.ModuleBehaviors;
|
|
|
|
namespace NadekoBot.Services;
|
|
|
|
public interface ICustomBehavior
|
|
: IExecOnMessage,
|
|
IInputTransformer,
|
|
IExecPreCommand,
|
|
IExecNoCommand,
|
|
IExecPostCommand
|
|
{
|
|
|
|
} |