blob: a7c65b52d92ac70b3ab6aa9b700aa550603de63f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
using LibMatrix.ExampleBot.Bot.Interfaces;
using LibMatrix.StateEventTypes.Spec;
namespace LibMatrix.ExampleBot.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!"
});
}
}
|