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

16 lines
283 B
Java
Raw Normal View History

2022-03-21 13:18:43 +01:00
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() {
}
}