about summary refs log tree commit diff
path: root/ExampleBots/MediaModeratorPoC/Bot/Commands/PingCommand.cs
blob: f9f46c2a8f4e9815fb52fa39ca542158823d2f50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using LibMatrix.StateEventTypes.Spec;
using MediaModeratorPoC.Bot.Interfaces;

namespace MediaModeratorPoC.Bot.Commands;

public class PingCommand : ICommand {
    public string Name { get; } = "ping";
    public string Description { get; } = "Pong!";

    public async Task Invoke(CommandContext ctx) {
        await ctx.Room.SendMessageEventAsync("m.room.message", new RoomMessageEventData {
            Body = "pong!"
        });
    }
}