19 lines
466 B
Swift
19 lines
466 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
|
|
]
|
|
)
|
|
|
|
}
|