Initial Commit

This commit is contained in:
Trey t
2023-06-13 22:59:01 -05:00
commit 6ee4a9420b
14 changed files with 688 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
//
// Werkout_iosApp.swift
// Werkout_ios
//
// Created by Trey Tartt on 6/13/23.
//
import SwiftUI
@main
struct Werkout_iosApp: App {
let persistenceController = PersistenceController.shared
var body: some Scene {
WindowGroup {
ContentView()
.environment(\.managedObjectContext, persistenceController.container.viewContext)
}
}
}