feat: Node type done and working, which is used for styling and rendering documentation strings

This commit is contained in:
2024-11-30 17:42:13 -05:00
parent 4b84c19198
commit 81925a95d6
3 changed files with 174 additions and 38 deletions

View File

@@ -7,6 +7,12 @@ struct VaultCommand: AsyncParsableCommand {
static let configuration = CommandConfiguration(
commandName: commandName,
abstract: createAbstract("Vault commands."),
discussion: Discussion(
.text("""
Allows you to run `ansible-vault` commands on your project or project-template.
"""),
.seeAlso(label: "Ansible Vault", command: "ansible-vault")
).render(),
subcommands: [
EncryptCommand.self, DecryptCommand.self
]