about summary refs log tree commit diff
path: root/Utilities/LibMatrix.DevTestBot/Bot/Interfaces
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2025-04-23 22:15:00 +0200
committerRory& <root@rory.gay>2025-04-23 22:15:14 +0200
commit17288cf70c97ea48c310ab876ee44554c09e8fe0 (patch)
treea8aecca8602ee52b6487651473a4c2fa433622b2 /Utilities/LibMatrix.DevTestBot/Bot/Interfaces
parentAdd tombstone event content, URL-escape room id in synapse admin (diff)
downloadLibMatrix-17288cf70c97ea48c310ab876ee44554c09e8fe0.tar.xz
Update devtestbot to use bot utils
Diffstat (limited to '')
-rw-r--r--Utilities/LibMatrix.DevTestBot/Bot/Interfaces/CommandContext.cs12
-rw-r--r--Utilities/LibMatrix.DevTestBot/Bot/Interfaces/ICommand.cs10
2 files changed, 0 insertions, 22 deletions
diff --git a/Utilities/LibMatrix.DevTestBot/Bot/Interfaces/CommandContext.cs b/Utilities/LibMatrix.DevTestBot/Bot/Interfaces/CommandContext.cs
deleted file mode 100644

index 221d1f4..0000000 --- a/Utilities/LibMatrix.DevTestBot/Bot/Interfaces/CommandContext.cs +++ /dev/null
@@ -1,12 +0,0 @@ -using LibMatrix.EventTypes.Spec; -using LibMatrix.RoomTypes; - -namespace LibMatrix.ExampleBot.Bot.Interfaces; - -public class CommandContext { - public required GenericRoom Room { get; init; } - public required StateEventResponse MessageEvent { get; init; } - public string CommandName => MessageContent.Body.Split(' ')[0][1..]; - public string[] Args => MessageContent.Body.Split(' ')[1..]; - private RoomMessageEventContent MessageContent => MessageEvent.TypedContent as RoomMessageEventContent ?? throw new Exception("Message content is not a RoomMessageEventContent"); -} \ No newline at end of file diff --git a/Utilities/LibMatrix.DevTestBot/Bot/Interfaces/ICommand.cs b/Utilities/LibMatrix.DevTestBot/Bot/Interfaces/ICommand.cs deleted file mode 100644
index a6dc8da..0000000 --- a/Utilities/LibMatrix.DevTestBot/Bot/Interfaces/ICommand.cs +++ /dev/null
@@ -1,10 +0,0 @@ -namespace LibMatrix.ExampleBot.Bot.Interfaces; - -public interface ICommand { - public string Name { get; } - public string Description { get; } - - public Task<bool> CanInvoke(CommandContext ctx) => Task.FromResult(true); - - public Task Invoke(CommandContext ctx); -} \ No newline at end of file