mirror of
https://github.com/pgpainless/pgpainless.git
synced 2025-09-10 02:39:39 +02:00
11 lines
375 B
Java
11 lines
375 B
Java
package sop.cli.picocli.commands;
|
|
|
|
import picocli.CommandLine;
|
|
import sop.exception.SOPGPException;
|
|
|
|
@CommandLine.Command(name = "detach-inband-signature-and-message",
|
|
description = "Split a clearsigned message",
|
|
exitCodeOnInvalidInput = SOPGPException.UnsupportedOption.EXIT_CODE)
|
|
public class DetachInbandSignatureAndMessageCmd implements Runnable {
|
|
|
|
}
|