Initial GrowthLapse app

This commit is contained in:
Mikei386
2026-06-02 20:36:04 +02:00
commit 4ea04dc3e4
7 changed files with 2107 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "GrowthLapse",
platforms: [
.macOS(.v13)
],
products: [
.executable(name: "GrowthLapse", targets: ["GrowthLapse"])
],
targets: [
.executableTarget(
name: "GrowthLapse",
path: "Sources/GrowthLapse"
)
]
)