burrow/Apple/App/BurrowApp.swift
2024-03-10 18:59:31 -04:00

13 lines
171 B
Swift

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