27 lines
440 B
Swift
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,
|
|
])
|
|
}
|
|
}
|