Files
libtailscale/swift/Examples/TailscaleKitHello/HelloFromTailscale/HelloFromTailscaleApp.swift
T
Jonathan Nobels 40f559c067 Makefile/swift: update Makefile and add support for iOS
updates tailscale/tailscale#13937

Adds a Makefile for building various targets.  Adds support for building
iOS compatible libtailscale_ios.a.   Removes SOCKS5 support for iOS where
it looks like the CFNetwork support is lacking.

Fixes a few unexported symbols in TailscaleKit.

Added macOS sample app.
2025-03-24 14:01:54 -04:00

16 lines
281 B
Swift

// Copyright (c) Tailscale Inc & AUTHORS
// SPDX-License-Identifier: BSD-3-Clause
import SwiftUI
@main
struct HelloFromTailscaleApp: App {
let manager = HelloManager()
var body: some Scene {
WindowGroup {
HelloView(dialer: manager)
}
}
}