From aa7026a17ededf7c181ed269c6388491d96e1b1e Mon Sep 17 00:00:00 2001 From: "Emma@Rory&" Date: Mon, 14 Aug 2023 05:07:51 +0200 Subject: Split LibMatrix into submodule --- MatrixRoomUtils.Bot/Bot/Commands/HelpCommand.cs | 28 ------------------------- 1 file changed, 28 deletions(-) delete mode 100644 MatrixRoomUtils.Bot/Bot/Commands/HelpCommand.cs (limited to 'MatrixRoomUtils.Bot/Bot/Commands/HelpCommand.cs') diff --git a/MatrixRoomUtils.Bot/Bot/Commands/HelpCommand.cs b/MatrixRoomUtils.Bot/Bot/Commands/HelpCommand.cs deleted file mode 100644 index 6db10ae..0000000 --- a/MatrixRoomUtils.Bot/Bot/Commands/HelpCommand.cs +++ /dev/null @@ -1,28 +0,0 @@ -using System.Text; -using MatrixRoomUtils.Bot.Bot.Interfaces; -using Microsoft.Extensions.DependencyInjection; - -namespace MatrixRoomUtils.Bot.Bot.Commands; - -public class HelpCommand : ICommand { - private readonly IServiceProvider _services; - public HelpCommand(IServiceProvider services) { - _services = services; - } - - public string Name { get; } = "help"; - public string Description { get; } = "Displays this help message"; - - public async Task Invoke(CommandContext ctx) { - var sb = new StringBuilder(); - sb.AppendLine("Available commands:"); - var commands = _services.GetServices().ToList(); - foreach (var command in commands) { - sb.AppendLine($"- {command.Name}: {command.Description}"); - } - - await ctx.Room.SendMessageEventAsync("m.room.message", new() { - Body = sb.ToString(), - }); - } -} \ No newline at end of file -- cgit 1.4.1