// // ReflectWatchApp.swift // Reflect Watch App // // Entry point for the Apple Watch companion app. // import SwiftUI @main struct ReflectWatchApp: App { init() { // Initialize Watch Connectivity for cross-device widget updates _ = WatchConnectivityManager.shared } var body: some Scene { WindowGroup { ContentView() } } }