// // Main.swift // Zyquo Local // // Author: Simon-Pierre Boucher // Mail: contact@spboucher.ai // import AppKit import SwiftUI /// Entry point. Dispatches to the CLI proof-of-concept / verification harness /// when invoked with flags, otherwise boots the SwiftUI application. @main enum Main { static func main() async { let args = CommandLine.arguments if args.contains("--poc") { await PoCRunner.run(arguments: args) return } if args.contains("--hub-poc") { await HubPoCRunner.run() return } if args.contains("--verify") { await VerifyRunner.run(arguments: args) return } ZyquoLocalApp.main() } }