mirror of
https://github.com/TeamOctolings/Octobot.git
synced 2025-01-31 09:09:00 +03:00
7 lines
185 B
C#
7 lines
185 B
C#
namespace Boyfriend.Commands;
|
|
|
|
public interface ICommand {
|
|
public string[] Aliases { get; }
|
|
|
|
public Task RunAsync(CommandProcessor cmd, string[] args, string[] cleanArgs);
|
|
}
|