SShx GuoFormat files
1822b1f0创建于 2023年2月9日历史提交
import ArgumentParser
import Foundation

struct Helper: ParsableCommand {
    static var configuration = CommandConfiguration(
        commandName: "helper",
        abstract: "Helper CLI for Copilot for Xcode",
        subcommands: [
            ReloadLaunchAgent.self,
        ]
    )
}

Helper.main()