io.quarkiverse.playpen.client.local.Local Maven / Gradle / Ivy
The newest version!
package io.quarkiverse.playpen.client.local;
import java.util.concurrent.Callable;
import io.quarkiverse.playpen.client.util.BaseCommand;
import picocli.CommandLine;
@CommandLine.Command(name = "local", subcommands = Connect.class)
public class Local extends BaseCommand implements Callable {
@Override
public Integer call() throws Exception {
output.info("Subcommands to work with local playpens.");
spec.commandLine().usage(output.out());
output.info("");
output.info("Use \"playpen local --help\" for more information about a given command.");
return CommandLine.ExitCode.USAGE;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy