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