leganto-apple/Leganto/LegantoApp.swift
Louis Hollingworth 81cb27dd6c
Initial commit
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2023-05-21 12:43:45 +01:00

21 lines
392 B
Swift

//
// LegantoApp.swift
// Leganto
//
// Created by Louis Hollingworth on 2023-05-21.
//
import SwiftUI
@main
struct LegantoApp: App {
let persistenceController = PersistenceController.shared
var body: some Scene {
WindowGroup {
ContentView()
.environment(\.managedObjectContext, persistenceController.container.viewContext)
}
}
}