[Feature] All endpoints #2

Merged
javier merged 11 commits from feature/endpoints into main 2023-04-18 20:03:13 +00:00
Showing only changes of commit 30dbaa3cc6 - Show all commits

View File

@ -4,6 +4,12 @@ import PackageDescription
let package = Package( let package = Package(
name: "AmiiboService", name: "AmiiboService",
platforms: [
.iOS(.v13),
.macOS(.v10_15),
.tvOS(.v13),
.watchOS(.v8)
],
products: [ products: [
.library( .library(
name: "AmiiboService", name: "AmiiboService",
@ -12,11 +18,15 @@ let package = Package(
] ]
), ),
], ],
dependencies: [], dependencies: [
.package(url: "https://github.com/rock-n-code/swift-libs.git", from: "0.1.0")
],
targets: [ targets: [
.target( .target(
name: "AmiiboService", name: "AmiiboService",
dependencies: [], dependencies: [
.product(name: "SwiftLibs", package: "swift-libs")
],
path: "Sources" path: "Sources"
), ),
.testTarget( .testTarget(