Files
swift-hpa/Sources/hpa/UtilsCommands/UtilsCommand.swift
Michael Housh faa28749bc
All checks were successful
CI / Run Tests (push) Successful in 2m43s
feat: Merges dev
2024-12-17 15:55:36 -05:00

21 lines
535 B
Swift

import ArgumentParser
struct UtilsCommand: AsyncParsableCommand {
static let commandName = "utils"
static let configuration = CommandConfiguration(
commandName: commandName,
abstract: createAbstract("Utility commands."),
discussion: """
These are commands that are generally only run on occasion / less frequently used.
""",
subcommands: [
DumpConfigCommand.self,
GenerateProjectTemplateCommand.self,
GenerateConfigurationCommand.self,
InstallDependenciesCommand.self
]
)
}