Initial Commit

This commit is contained in:
Madeline
2023-02-07 13:19:02 -05:00
commit 8876fc666a
17 changed files with 1009 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
//
// KlipperMonApp.swift
// KlipperMon
//
// Created by maddiefuzz on 2/7/23.
//
import SwiftUI
@main
struct KlipperMonApp: App {
let persistenceController = PersistenceController.shared
var body: some Scene {
WindowGroup {
ContentView()
.environment(\.managedObjectContext, persistenceController.container.viewContext)
}
}
}