You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Apple/Sources/AllInApp/AllIn/AllInApp.swift

29 lines
469 B

//
// AllInApp.swift
// AllIn
//
// Created by Emre on 19/09/2023.
//
import SwiftUI
import DependencyInjection
import Model
import ViewModel
@main
struct AllInApp: App {
@UIApplicationDelegateAdaptor(AppDelegate.self) var appDelegate
let DI = DependencyInjection.shared
init() {
DI.addSingleton(IAuthService.self, AuthService())
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}