import ArgumentParser struct GenerateCommand: AsyncParsableCommand { static let commandName = "generate" static let configuration = CommandConfiguration( commandName: commandName, subcommands: [ GeneratePdfCommand.self, GenerateLatexCommand.self, GenerateHtmlCommand.self ] ) }