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