Initial commit: IYmtg Master project

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-24 09:12:46 -05:00
commit b993ef4020
16 changed files with 3303 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import SwiftUI
import FirebaseCore
@main
struct IYmtgApp: App {
init() {
AppConfig.validate()
if Bundle.main.path(forResource: "GoogleService-Info", ofType: "plist") != nil {
FirebaseApp.configure()
} else {
print("⚠️ GoogleService-Info.plist missing. Running in Local Mode.")
}
}
var body: some Scene {
WindowGroup { ContentView() }
}
}