mirror of
https://github.com/Mueller-Patrick/DHBW-Service-App.git
synced 2024-11-01 08:53:58 +00:00
21 lines
388 B
Swift
21 lines
388 B
Swift
//
|
|
// 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)
|
|
}
|
|
}
|
|
}
|