about summary refs log tree commit diff
path: root/Jenny/Commands/ConfigureSubCommands/ControlRoomConfigureSubcommand.cs
blob: 94294fb962c13418299f0cc50e89954de2ac3c9f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using LibMatrix.Helpers;
using LibMatrix.Utilities.Bot.Interfaces;

namespace Jenny.Commands.ConfigureSubCommands;

public class ControlRoomConfigureSubCommand : ICommand<ConfigureCommand> {
    public string Name { get; } = "controlroom";
    public string[]? Aliases { get; }
    public string Description { get; } = "Configure the control room";
    public bool Unlisted { get; }

    public async Task Invoke(CommandContext ctx) {
        if (ctx.Args.Length == 0) {
            await ctx.Room.SendMessageEventAsync(new MessageBuilder("m.notice").WithBody("meow").Build());
        }
        
    }
}