From d133a168c17d605236e967ff63728420ddb0ed98 Mon Sep 17 00:00:00 2001 From: Rory& Date: Wed, 31 Jan 2024 18:50:16 +0100 Subject: Repo split --- ExampleBots/LibMatrix.ExampleBot/Bot/Interfaces/ICommand.cs | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 ExampleBots/LibMatrix.ExampleBot/Bot/Interfaces/ICommand.cs (limited to 'ExampleBots/LibMatrix.ExampleBot/Bot/Interfaces/ICommand.cs') diff --git a/ExampleBots/LibMatrix.ExampleBot/Bot/Interfaces/ICommand.cs b/ExampleBots/LibMatrix.ExampleBot/Bot/Interfaces/ICommand.cs deleted file mode 100644 index 2ba5a27..0000000 --- a/ExampleBots/LibMatrix.ExampleBot/Bot/Interfaces/ICommand.cs +++ /dev/null @@ -1,12 +0,0 @@ -namespace LibMatrix.ExampleBot.Bot.Interfaces; - -public interface ICommand { - public string Name { get; } - public string Description { get; } - - public Task CanInvoke(CommandContext ctx) { - return Task.FromResult(true); - } - - public Task Invoke(CommandContext ctx); -} -- cgit 1.4.1