20 lines
346 B
Swift
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()
|
|
}
|
|
}
|
|
}
|