Mercurial > public > simoleon
view Simoleon/SimoleonApp.swift @ 174:f55b6cde1759
remove workflows
author | Dennis Concepcion Martin <dennisconcepcionmartin@gmail.com> |
---|---|
date | Tue, 26 Oct 2021 13:11:22 +0200 |
parents | ad8c6567539d |
children | 5a9430fd6b4d |
line wrap: on
line source
// // SimoleonApp.swift // Simoleon // // Created by Dennis Concepción Martín on 26/10/21. // import SwiftUI @main struct SimoleonApp: App { let persistenceController = PersistenceController.shared var body: some Scene { WindowGroup { ContentView() .environment(\.managedObjectContext, persistenceController.container.viewContext) } } }