Exemplo n.º 1
0
        public async Task EditCommandAsync([Summary("The name of the command you want to edit")] string cmdName, [Summary("The new contents of the command")][Remainder] string cmdContent)
        {
            string result = await CommandUtilities.ModifyCommandAsync(cmdName, cmdContent, _commandService);

            await ReplyAsync(result);
        }