15 lines
210 B
Swift
15 lines
210 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct FuelBoardWatchApp: App {
|
|
init() {
|
|
WatchSyncManager.shared.activate()
|
|
}
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|