Files
workouts/Workouts Watch App/WorkoutsApp.swift
2025-08-13 11:10:52 -04:00

21 lines
298 B
Swift
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
//
// WorkoutsApp.swift
// Workouts
//
// Created by rzen on 8/13/25 at 11:10AM.
//
// Copyright 2025 Rouslan Zenetl. All Rights Reserved.
//
import SwiftUI
@main
struct Workouts_Watch_AppApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
}