amiibo-service/Package.swift
2023-04-18 19:44:24 +02:00

31 lines
601 B
Swift

// swift-tools-version: 5.8
import PackageDescription
let package = Package(
name: "AmiiboService",
products: [
.library(
name: "AmiiboService",
targets: [
"AmiiboService"
]
),
],
dependencies: [],
targets: [
.target(
name: "AmiiboService",
dependencies: [],
path: "Sources"
),
.testTarget(
name: "AmiiboServiceTests",
dependencies: [
"AmiiboService"
],
path: "Tests"
),
]
)