Initial Commit

This commit is contained in:
2025-08-13 11:10:52 -04:00
commit 2bfeb6a165
15 changed files with 708 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
//
// WorkoutsApp.swift
// Workouts
//
// Created by rzen on 8/13/25 at 11:10AM.
//
// Copyright 2025 Rouslan Zenetl. All Rights Reserved.
//
import SwiftUI
@main
struct WorkoutsApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}