Mercurial > public > simoleon
view Simoleon/SimoleonApp.swift @ 172:9b0486301fbf
add sensitive data to .gitignore
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 12 Oct 2021 17:14:05 +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) } } }