Created the DependencyService service in the Libraries package.

This commit is contained in:
Javier Cicchelli 2022-12-05 22:49:15 +01:00
parent e56d3b76d8
commit c38b3c1ec1

View File

@ -8,11 +8,16 @@ let package = Package(
products: [ products: [
.library( .library(
name: "Libraries", name: "Libraries",
targets: ["APIService"]), targets: [
"APIService",
"DependencyService"
]
),
], ],
dependencies: [], dependencies: [],
targets: [ targets: [
.target(name: "APIService"), .target(name: "APIService"),
.target(name: "DependencyService"),
.testTarget( .testTarget(
name: "APIServiceTests", name: "APIServiceTests",
dependencies: ["APIService"] dependencies: ["APIService"]