- API, Mac client

This commit is contained in:
Ty Clifford
2026-07-05 15:58:51 -04:00
parent 9dbd29d8aa
commit 729b29276f
14 changed files with 1682 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
// swift-tools-version: 5.5
import PackageDescription
let package = Package(
name: "TCMSMacClient",
platforms: [
.macOS(.v12)
],
products: [
.executable(name: "TCMSMacClient", targets: ["TCMSMacClient"])
],
targets: [
.executableTarget(
name: "TCMSMacClient",
path: "Sources/TCMSMacClient"
)
]
)