Esempio n. 1
0
        public Task PrintHelp(HelpCommand command, Contexts contexts)
        {
            var helpInformations = this._helpService.GetHelpInformations(contexts);

            return(string.IsNullOrEmpty(command.Command)
                ? _helpService.PrintHelpForAllCommands(command.Json, contexts, helpInformations)
                : this._helpService.PrintHelpForOneCommand(command.Command, contexts, helpInformations));
        }