burrow/Apple/App/BurrowApp.swift
2024-03-09 15:54:58 -08:00

13 lines
171 B
Swift

import SwiftUI
#if !os(macOS)
@MainActor
@main
struct BurrowApp: App {
var body: some Scene {
WindowGroup {
BurrowView()
}
}
}
#endif