pgpeasy/src/main/java/org/pgpainless/pgpeasy/commands/wkd/Fetch.java

16 lines
283 B
Java

package org.pgpainless.pgpeasy.commands.wkd;
import picocli.CommandLine;
@CommandLine.Command(
name = "fetch",
description = "Fetch a certificate from the Web Key Directory"
)
public class Fetch implements Runnable {
@Override
public void run() {
}
}