19 lines
282 B
Swift
19 lines
282 B
Swift
|
//
|
||
|
// another_imApp.swift
|
||
|
// another.im
|
||
|
//
|
||
|
// Created by Wo It on 18.11.24.
|
||
|
// Copyright © 2024 monal-im.org. All rights reserved.
|
||
|
//
|
||
|
|
||
|
import SwiftUI
|
||
|
|
||
|
@main
|
||
|
struct AnotherIMApp: App {
|
||
|
var body: some Scene {
|
||
|
WindowGroup {
|
||
|
ContentView()
|
||
|
}
|
||
|
}
|
||
|
}
|