using LibMatrix.EventTypes.Spec; using LibMatrix.Utilities.Bot.Interfaces; namespace OsuFederatedBeatmapApi.Commands; public class CreateBeatmapSetListCommand : ICommand { public string Name { get; } = "create-beatmapset-list"; public string Description { get; } = "Creates a beatmapset list and adds it to the list of tracked beatmapset lists"; public async Task Invoke(CommandContext ctx) { await ctx.Room.SendMessageEventAsync(new RoomMessageEventContent(body: "pong!")); } }