This commit is contained in:
Oleksandr Kozachuk
2023-06-26 17:53:16 +02:00
parent 648d7b35cc
commit bcfb41917a
20 changed files with 1248 additions and 0 deletions
@@ -0,0 +1,20 @@
//
// ChatMasterMindApp.swift
// ChatMasterMind
//
// Created by Oleksandr Kozachuk on 2023-06-24.
//
import SwiftUI
import SwiftData
@main
struct ChatMasterMindApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
.modelContainer(for: ChatHistory.self)
}
}