Files
happy-life-star/EmotionMuseum/EmotionMuseumApp.swift
T
2025-05-26 20:04:17 +08:00

21 lines
400 B
Swift

//
// 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)
}
}
}