19 lines
334 B
Swift
19 lines
334 B
Swift
//
|
|
// Schedule_ICTISApp.swift
|
|
// Schedule ICTIS
|
|
//
|
|
// Created by Mironov Egor on 13.11.2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct Schedule_ICTISApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.environment(\.managedObjectContext, ClassProvider.shared.viewContext)
|
|
}
|
|
}
|
|
}
|