feat: add initial implementation of AI Workspace macOS Menu Bar App with service management functionality

This commit is contained in:
2026-05-20 15:52:58 -06:00
parent 8c58210c0c
commit ab36e4b465
4 changed files with 427 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "AIWorkspace",
platforms: [
.macOS(.v13)
],
products: [
.executable(name: "AIWorkspace", targets: ["AIWorkspace"])
],
targets: [
.executableTarget(
name: "AIWorkspace",
path: "Sources"
)
]
)