mirror of
https://github.com/fromchat-messenger/app.git
synced 2026-09-22 19:15:05 +03:00
70a9f8635e
Signed-off-by: denis0001-dev <denis0001.dev@ya.ru>
16 lines
218 B
Swift
16 lines
218 B
Swift
import SwiftUI
|
|
|
|
@main
|
|
struct iOSApp: App {
|
|
init() {
|
|
IosApplicationBootstrapKt.launchOnApplicationStart()
|
|
}
|
|
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
|
|
}
|
|
}
|
|
}
|