mycode/myApp/HaruDanim/IOS/Haru_DanimApp.swift
2026-07-10 03:02:15 +09:00

27 lines
440 B
Swift

//
// Haru_DanimApp.swift
// Haru_Danim
//
// Created by on 7/7/26.
//
import SwiftUI
import SwiftData
@main
struct Haru_DanimApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
.modelContainer(for: [
Tag.self,
Action.self,
TimeSession.self,
CountEntry.self,
Goal.self,
Quest.self,
])
}
}