Initial Commit

This commit is contained in:
2025-05-26 20:04:17 +08:00
commit ec817067f1
15 changed files with 1003 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
//
// EmotionMuseumApp.swift
// EmotionMuseum
//
// Created by on 2025/5/26.
//
import SwiftUI
@main
struct EmotionMuseumApp: App {
let persistenceController = PersistenceController.shared
var body: some Scene {
WindowGroup {
ContentView()
.environment(\.managedObjectContext, persistenceController.container.viewContext)
}
}
}