mirror of
https://github.com/neon443/DesktopGoose2.git
synced 2026-03-11 05:19:14 +00:00
21 lines
286 B
Swift
21 lines
286 B
Swift
//
|
|
// DesktopGoose2App.swift
|
|
// DesktopGoose2
|
|
//
|
|
// Created by neon443 on 11/09/2025.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct DesktopDuckApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.onAppear {
|
|
let x = GooseWindow()
|
|
}
|
|
}
|
|
}
|
|
}
|