mirror of
https://github.com/Drop-OSS/libtailscale.git
synced 2026-07-01 06:41:57 -04:00
40f559c067
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.
16 lines
281 B
Swift
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)
|
|
}
|
|
}
|
|
}
|