14 lines
239 B
Swift
Executable File
14 lines
239 B
Swift
Executable File
import SwiftUI
|
|
|
|
@main
|
|
struct YpChatApp: App {
|
|
@StateObject private var services = AppServices()
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
.environmentObject(services)
|
|
}
|
|
}
|
|
}
|