Skip to content

Commit 940349b

Browse files
committed
chore: Set up initial swift package manifest file.
1 parent 1a8946b commit 940349b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

Package.swift

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// swift-tools-version: 6.1
2+
3+
import PackageDescription
4+
5+
let package = Package(
6+
name: "dispatch-async",
7+
products: [
8+
.library(
9+
name: "DispatchAsync",
10+
targets: ["DispatchAsync"]),
11+
],
12+
targets: [
13+
.target(
14+
name: "DispatchAsync"),
15+
.testTarget(
16+
name: "DispatchAsyncTests",
17+
dependencies: ["DispatchAsync"]
18+
),
19+
]
20+
)

0 commit comments

Comments
 (0)