chore: scaffold MyVoxtral macOS menu bar app

This commit is contained in:
Carsten Abele 2026-04-07 19:15:49 +02:00
commit 4b1cae1b5f
4424 changed files with 9392 additions and 0 deletions

13
MyVoxtral/Package.swift Normal file
View file

@ -0,0 +1,13 @@
// swift-tools-version: 5.10
import PackageDescription
let package = Package(
name: "MyVoxtral",
platforms: [.macOS(.v14)],
targets: [
.executableTarget(
name: "MyVoxtral",
path: "MyVoxtral"
)
]
)