ChatMastermind/app/ChatMasterMind/ChatMasterMindApp.swift
Oleksandr Kozachuk bcfb41917a Add App.
2023-06-26 17:53:16 +02:00

21 lines
318 B
Swift

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