Files
swift-hpa/Sources/hpa/CreateTemplateCommand.swift
2024-11-29 14:30:52 -05:00

16 lines
357 B
Swift

import ArgumentParser
struct CreateProjectTemplateCommand: AsyncParsableCommand {
static let configuration = CommandConfiguration(
commandName: "create-project-template",
abstract: "Create a home performance assesment project template."
)
@OptionGroup var globals: GlobalOptions
mutating func run() async throws {
fatalError()
}
}