// // Main.swift // Zyquo MLX // // Author: Simon-Pierre Boucher // Mail: contact@spboucher.ai // import Foundation /// Process entry point: CLI proof-of-concept mode when inference flags are /// present (Phase 2 gate), otherwise the SwiftUI app. @main enum Main { static func main() async { if CLI.shouldRun { exit(await CLI.run()) } if CLI.shouldRunFoundry { exit(await CLI.runFoundry()) } ZyquoMLXApp.main() } }