Initial commit

Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
Louis Hollingworth 2023-05-21 12:43:45 +01:00
commit 81cb27dd6c
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
19 changed files with 1740 additions and 0 deletions

20
Leganto/LegantoApp.swift Normal file
View file

@ -0,0 +1,20 @@
//
// 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)
}
}
}