feat: Reorganizes files

This commit is contained in:
2024-11-30 09:21:27 -05:00
parent ed3f752694
commit 2c551e33d3
12 changed files with 212 additions and 113 deletions

View 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
]
)
}