21 lines
355 B
Swift
21 lines
355 B
Swift
//
|
|
// AutoCat2App.swift
|
|
// Shared
|
|
//
|
|
// Created by Selim Mustafaev on 04.07.2021.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct AutoCat2App: App {
|
|
let storageService = StorageService.shared
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.environment(\.managedObjectContext, storageService.context)
|
|
}
|
|
}
|
|
}
|