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