another.im-ios/AnotherIM/AnotherIMApp.swift
2024-12-16 08:19:58 +01:00

12 lines
157 B
Swift

import Combine
import SwiftUI
@main
struct AnotherIMApp: App {
var body: some Scene {
WindowGroup {
StartScreen()
}
}
}