initial pre-viable version of watch app

This commit is contained in:
2025-07-20 19:44:53 -04:00
parent 33b88cb8f0
commit 68d90160c6
35 changed files with 2108 additions and 179 deletions

View File

@ -2,19 +2,22 @@
// WorksoutsApp.swift
// Workouts
//
// Created by rzen on 7/15/25 at 7:09PM.
// Created by rzen on 7/15/25 at 7:09 PM.
//
// Copyright 2025 Rouslan Zenetl. All Rights Reserved.
//
import SwiftUI
import SwiftData
@main
struct Worksouts_Watch_AppApp: App {
let container = AppContainer.create()
var body: some Scene {
WindowGroup {
ContentView()
.modelContainer(container)
}
}
}