Rename 'fetch' subcommand to 'get'

This commit is contained in:
Paul Schaub 2022-04-11 13:47:41 +02:00
parent c0652b6162
commit 7f067c55e5
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311
4 changed files with 13 additions and 11 deletions

View file

@ -6,13 +6,15 @@ package pgp.wkd.cli;
import pgp.wkd.exception.CertNotFetchableException;
import pgp.wkd.exception.RejectedCertificateException;
import pgp.wkd.cli.command.Fetch;
import pgp.wkd.cli.command.GetCmd;
import picocli.CommandLine;
@CommandLine.Command(
name = "wkd",
description = "Interact with the Web Key Directory",
subcommands = {
CommandLine.HelpCommand.class,
Fetch.class
GetCmd.class
}
)
public class WKDCLI {