initial commit :3

This commit is contained in:
2026-04-21 19:39:11 +09:00
commit 716fdfb6b2
7 changed files with 91 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// swift-tools-version: 6.2
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "sonya",
dependencies: [
.package(path: "Sources/sonyalib"),
],
targets: [
.executableTarget(
name: "sonya",
dependencies: [
.product(name: "sonyalib", package: "sonyalib"),
]
),
]
)