init: init proj

This commit is contained in:
2026-02-26 22:15:35 +08:00
commit 7ef5348f65
43 changed files with 3085 additions and 0 deletions

20
Package.swift Normal file
View File

@@ -0,0 +1,20 @@
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "DDYSClient",
platforms: [
.iOS(.v17),
.macOS(.v14),
],
dependencies: [
.package(path: "LocalPackages/SwiftSoup"),
],
targets: [
.executableTarget(
name: "DDYSClient",
dependencies: ["SwiftSoup"],
path: "DDYSClient"
),
]
)