feat: Reorganizes files
This commit is contained in:
17
Sources/hpa/UtilsCommands/UtilsCommand.swift
Normal file
17
Sources/hpa/UtilsCommands/UtilsCommand.swift
Normal file
@@ -0,0 +1,17 @@
|
||||
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
|
||||
]
|
||||
)
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user