18 lines
452 B
Swift
18 lines
452 B
Swift
import ArgumentParser
|
|
|
|
struct UtilsCommand: AsyncParsableCommand {
|
|
static let commandName = "utils"
|
|
|
|
static let configuration = CommandConfiguration(
|
|
commandName: commandName,
|
|
abstract: "\("Utility commands.".blue)",
|
|
discussion: """
|
|
These are commands that are generally only run on occasion / less frequently used.
|
|
""",
|
|
subcommands: [
|
|
CreateProjectTemplateCommand.self, GenerateConfigurationCommand.self
|
|
]
|
|
)
|
|
|
|
}
|