diff --git a/Apps/Locations/Libraries/Package.swift b/Apps/Locations/Libraries/Package.swift index 03df4b5..27b9b9e 100644 --- a/Apps/Locations/Libraries/Package.swift +++ b/Apps/Locations/Libraries/Package.swift @@ -1,28 +1,28 @@ // swift-tools-version: 5.8 -// The swift-tools-version declares the minimum version of Swift required to build this package. import PackageDescription let package = Package( name: "Libraries", products: [ - // Products define the executables and libraries a package produces, and make them visible to other packages. .library( name: "Libraries", - targets: ["Libraries"]), - ], - dependencies: [ - // Dependencies declare other packages that this package depends on. - // .package(url: /* package url */, from: "1.0.0"), + targets: [ + "Locations" + ] + ), ], + dependencies: [], targets: [ - // Targets are the basic building blocks of a package. A target can define a module or a test suite. - // Targets can depend on other targets in this package, and on products in packages this package depends on. .target( - name: "Libraries", - dependencies: []), + name: "Locations", + dependencies: [] + ), .testTarget( - name: "LibrariesTests", - dependencies: ["Libraries"]), + name: "LocationsTests", + dependencies: [ + "Locations" + ] + ), ] ) diff --git a/Apps/Locations/Libraries/Sources/Libraries/Libraries.swift b/Apps/Locations/Libraries/Sources/Locations/Libraries.swift similarity index 100% rename from Apps/Locations/Libraries/Sources/Libraries/Libraries.swift rename to Apps/Locations/Libraries/Sources/Locations/Libraries.swift diff --git a/Apps/Locations/Libraries/Tests/LibrariesTests/LibrariesTests.swift b/Apps/Locations/Libraries/Tests/LocationsTests/LibrariesTests.swift similarity index 100% rename from Apps/Locations/Libraries/Tests/LibrariesTests/LibrariesTests.swift rename to Apps/Locations/Libraries/Tests/LocationsTests/LibrariesTests.swift