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

convex.cli.Key Maven / Gradle / Ivy

package convex.cli;

import picocli.CommandLine;
import picocli.CommandLine.Command;
import picocli.CommandLine.ParentCommand;

/**
 *
 * Convex key sub commands
 *
 *		convex.key
 *
 */
@Command(name="key",
	aliases={"ke"},
	subcommands = {
		KeyImport.class,
		KeyGenerate.class,
		KeyList.class,
		KeyExport.class,
		CommandLine.HelpCommand.class
	},
	mixinStandardHelpOptions=true,
	description="Manage local Convex key store.")
public class Key implements Runnable {

	@ParentCommand
	protected Main mainParent;

	@Override
	public void run() {
		// sub command run with no command provided
		CommandLine.usage(new Key(), System.out);
	}
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy