mirror of
https://github.com/ivabus/lonelyradio
synced 2024-11-22 16:15:10 +03:00
17 lines
229 B
Swift
17 lines
229 B
Swift
//
|
|
// monoclientApp.swift
|
|
// monoclient
|
|
//
|
|
// Created by ivabus on 03.03.2024.
|
|
//
|
|
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct monoclientApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
}
|