com.redislabs.picocliredis.HelpCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of picocli-redis Show documentation
Show all versions of picocli-redis Show documentation
Picocli configuration for Redis
package com.redislabs.picocliredis;
import lombok.Data;
import picocli.CommandLine.Command;
import picocli.CommandLine.Option;
@Command(abbreviateSynopsis = true, usageHelpAutoWidth = true)
public @Data class HelpCommand {
@Option(names = "--help", usageHelp = true, description = "Show this help message and exit")
private boolean helpRequested;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy