import SwiftUI import SwiftData @main struct BanYaroGoApp: App { @State private var auth = AuthSession() var body: some Scene { WindowGroup { RootView() .environment(auth) } .modelContainer(for: [ActiveWalk.self, PhotoLocation.self]) } }