All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openapitools.codegen.cmd.HelpCommand Maven / Gradle / Ivy

There is a newer version: 7.10.0
Show newest version
package org.openapitools.codegen.cmd;

import io.airlift.airline.Command;
import io.airlift.airline.Help;

import javax.inject.Inject;

@Command(name = "help", description = "Display help information about openapi-generator")
public class HelpCommand extends OpenApiGeneratorCommand {

    @Inject
    public Help help;

    @Override
    public void execute() {
        help.call();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy