Files
singlechat/ios/YpChat/YpChatApp.swift
Torsten Schulz (local) bfe28a25fa
All checks were successful
Deploy SingleChat / deploy (push) Successful in 40s
android app, extension of stats
2026-08-10 14:03:34 +02:00

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