forked from TeamInklings/Octobot
8 lines
185 B
C#
8 lines
185 B
C#
|
namespace Boyfriend.Commands;
|
|||
|
|
|||
|
public interface ICommand {
|
|||
|
public string[] Aliases { get; }
|
|||
|
|
|||
|
public Task RunAsync(CommandProcessor cmd, string[] args, string[] cleanArgs);
|
|||
|
}
|