org.openapitools.codegen.cmd.HelpCommand Maven / Gradle / Ivy
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