Mercurial > public > simoleon
view Simoleon/SimoleonApp.swift @ 165:6f024e6a3b19
Remove unused purchase files
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Sat, 11 Sep 2021 16:29:57 +0200 |
parents | 35573bdd7d9b |
children | ad8c6567539d |
line wrap: on
line source
// // SimoleonApp.swift // Simoleon // // Created by Dennis Concepción Martín on 08/07/2021. // import SwiftUI @main struct SimoleonApp: App { let persistenceController = PersistenceController.shared var body: some Scene { WindowGroup { ContentView() .environment(\.managedObjectContext, persistenceController.container.viewContext) } } }