feat: Begins vault commands, adds nodes for rendering discussion documentation.
This commit is contained in:
14
Sources/hpa/VaultCommands/VaultCommand.swift
Normal file
14
Sources/hpa/VaultCommands/VaultCommand.swift
Normal file
@@ -0,0 +1,14 @@
|
||||
import ArgumentParser
|
||||
|
||||
struct VaultCommand: AsyncParsableCommand {
|
||||
|
||||
static let commandName = "vault"
|
||||
|
||||
static let configuration = CommandConfiguration(
|
||||
commandName: commandName,
|
||||
abstract: createAbstract("Vault commands."),
|
||||
subcommands: [
|
||||
EncryptCommand.self, DecryptCommand.self
|
||||
]
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user