mirror of
https://github.com/foomo/gotrspc-mobile-examples.git
synced 2025-10-16 12:35:38 +00:00
24 lines
339 B
Swift
24 lines
339 B
Swift
//
|
|
// FileShareApp.swift
|
|
// FileShare
|
|
//
|
|
// Created by Hans Halfar on 13.05.24.
|
|
//
|
|
|
|
import SwiftUI
|
|
import MobileServer
|
|
|
|
public let server = MobileNewNextJSHandler("localhost:3000")
|
|
|
|
@main
|
|
struct FileShareApp: App {
|
|
var body: some Scene {
|
|
WindowGroup {
|
|
ContentView()
|
|
}
|
|
}
|
|
init() {
|
|
|
|
}
|
|
}
|