import Foundation // Entry point — avoids @main conflict with top-level code Task { do { try await SimpleServerApp.main() } catch { print("Server error: \(error)") exit(1) } } dispatchMain()