Mercurial > public > lazybear
comparison LazyBear/LazyBear/LazyBearApp.swift @ 163:9d519f230f26
Start clean project
author | Dennis Concepción Martín <66180929+denniscm190@users.noreply.github.com> |
---|---|
date | Wed, 17 Feb 2021 20:21:57 +0100 |
parents | lazybear/LazyBearApp.swift@6488392684cc |
children |
comparison
equal
deleted
inserted
replaced
162:6488392684cc | 163:9d519f230f26 |
---|---|
1 // | |
2 // LazyBearApp.swift | |
3 // LazyBear | |
4 // | |
5 // Created by Dennis Concepción Martín on 17/2/21. | |
6 // | |
7 | |
8 import SwiftUI | |
9 | |
10 @main | |
11 struct LazyBearApp: App { | |
12 let persistenceController = PersistenceController.shared | |
13 | |
14 var body: some Scene { | |
15 WindowGroup { | |
16 ContentView() | |
17 .environment(\.managedObjectContext, persistenceController.container.viewContext) | |
18 } | |
19 } | |
20 } |