Mercurial > public > geoquiz
view GeoQuiz/GeoQuizApp.swift @ 22:56add5561261
add mock data creation
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Wed, 26 Oct 2022 08:20:19 +0200 |
parents | e281791e0494 |
children |
line wrap: on
line source
// // GeoQuizApp.swift // GeoQuiz // // Created by Dennis Concepción Martín on 4/9/22. // import SwiftUI import RevenueCat @main struct GeoQuizApp: App { let persistenceController = PersistenceController.shared init() { Purchases.configure(withAPIKey: "appl_BymTxroeoaWiXAraaFjcPlHlqbf") } var body: some Scene { WindowGroup { ContentView() .environment(\.managedObjectContext, persistenceController.container.viewContext) } } }