From 92c91e206335a1dc5354cc737bb0a0a723e80571 Mon Sep 17 00:00:00 2001 From: Jonathan Nobels Date: Fri, 19 Dec 2025 15:54:45 -0500 Subject: [PATCH] swift/TailscaleKit: add public to MaskedPrefs constructor The constructor for MaskedPrefs needs to be public. Signed-off-by: Jonathan Nobels --- swift/TailscaleKit/LocalAPI/Types.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift/TailscaleKit/LocalAPI/Types.swift b/swift/TailscaleKit/LocalAPI/Types.swift index 182fbd6..707b630 100644 --- a/swift/TailscaleKit/LocalAPI/Types.swift +++ b/swift/TailscaleKit/LocalAPI/Types.swift @@ -128,7 +128,7 @@ public struct Ipn: Sendable { private(set) var ForceDaemonSet: Bool? private(set) var HostnameSet: Bool? - init() {} + public init() {} // Helper builder functions which can be chained in place of the convenience // initializer.