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