Changed file structure

This commit is contained in:
2020-12-21 20:28:01 +01:00
committed by Patrick Müller
parent fcf7d97764
commit bdc3560668
13 changed files with 109 additions and 96 deletions
+20
View File
@@ -0,0 +1,20 @@
//
// DHBW_ServiceApp.swift
// DHBW-Service
//
// Created by Patrick Müller on 20.12.20.
//
import SwiftUI
@main
struct DHBW_ServiceApp: App {
let persistenceController = PersistenceController.shared
var body: some Scene {
WindowGroup {
ContentView()
.environment(\.managedObjectContext, persistenceController.context)
}
}
}