Files
swift-hpa/Sources/hpa/UtilsCommands/UtilsCommand.swift

20 lines
505 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: [
GenerateProjectTemplateCommand.self,
GenerateConfigurationCommand.self,
InstallDependenciesCommand.self
]
)
}