Mercurial > public > geoquiz
view GeoQuiz/GeoQuizApp.swift @ 18:d20cf93c9812
change gitignore
author | Dennis C. M. <dennis@denniscm.com> |
---|---|
date | Sat, 22 Oct 2022 08:56:54 +0100 |
parents | 1011e56b7832 |
children | e281791e0494 |
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 { @StateObject private var persistenceController = PersistenceController() init() { Purchases.configure(withAPIKey: "appl_BymTxroeoaWiXAraaFjcPlHlqbf") } var body: some Scene { WindowGroup { ContentView() .environment(\.managedObjectContext, persistenceController.container.viewContext) } } }