Files
WerkoutIOS/iphone/Werkout_watch Watch App/Werkout_watchApp.swift
2024-07-01 21:22:12 -05:00

20 lines
346 B
Swift

//
// Werkout_watchApp.swift
// Werkout_watch Watch App
//
// Created by Trey Tartt on 6/22/23.
//
import SwiftUI
@main
struct Werkout_watch_Watch_AppApp: App {
@WKApplicationDelegateAdaptor(WatchDelegate.self) var delegate: WatchDelegate
var body: some Scene {
WindowGroup {
ContentView()
}
}
}