getting phase one of organizing top level auth

This commit is contained in:
talksik
2021-12-14 02:10:55 -08:00
parent ef2d859dd2
commit 62968fbbd2
5 changed files with 102 additions and 28 deletions
+3 -1
View File
@@ -11,10 +11,12 @@ import GoogleSignIn
@main
struct nirvana_iosApp: App {
@StateObject var authSessionStore: AuthSessionStore = AuthSessionStore()
@UIApplicationDelegateAdaptor private var appDelegate: AppDelegate
var body: some Scene {
WindowGroup {
ContentView()
ContentView().environmentObject(authSessionStore)
}
}
}