Initial commit
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
This commit is contained in:
commit
81cb27dd6c
19 changed files with 1740 additions and 0 deletions
20
Leganto/LegantoApp.swift
Normal file
20
Leganto/LegantoApp.swift
Normal 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)
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue