blob: a261a59c691172f6565e2d1a946e94a17465de8d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 RoomMessageEventContent(body: "pong!"));
}
}
|