pgpeasy/src/main/java/org/pgpainless/pgpeasy/commands/WOT.java

16 lines
259 B
Java

package org.pgpainless.pgpeasy.commands;
import picocli.CommandLine;
@CommandLine.Command(
name = "wot",
description = "Interact with the Web of Trust"
)
public class WOT implements Runnable {
@Override
public void run() {
}
}