snapshot current state before gitea sync

This commit is contained in:
2026-02-18 10:50:25 +01:00
parent 4b14d06bc8
commit 4f6ff705cd
31 changed files with 228 additions and 220 deletions
+13
View File
@@ -0,0 +1,13 @@
import SwiftUI
@main
struct RunPlusApp: App {
@StateObject private var appModel = AppModel()
var body: some Scene {
WindowGroup {
ContentView()
.environmentObject(appModel)
}
}
}