15 lines
312 B
Swift
15 lines
312 B
Swift
import ArgumentParser
|
|
|
|
struct VaultCommand: AsyncParsableCommand {
|
|
|
|
static let commandName = "vault"
|
|
|
|
static let configuration = CommandConfiguration(
|
|
commandName: commandName,
|
|
abstract: createAbstract("Vault commands."),
|
|
subcommands: [
|
|
EncryptCommand.self, DecryptCommand.self
|
|
]
|
|
)
|
|
}
|