16 lines
357 B
Swift
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()
|
|
}
|
|
}
|