Skip to content

Commit 05130fb

Browse files
committed
Убрал лишние комментарии
1 parent a16c7a1 commit 05130fb

File tree

3 files changed

+1
-17
lines changed

3 files changed

+1
-17
lines changed

SwiftUI-WorkoutApp/DateFormatterService/Package.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,15 @@ let package = Package(
77
name: "DateFormatterService",
88
platforms: [.iOS(.v15)],
99
products: [
10-
// Products define the executables and libraries a package produces, and make them visible to other packages.
1110
.library(
1211
name: "DateFormatterService",
1312
targets: ["DateFormatterService"]
1413
)
1514
],
1615
dependencies: [
17-
// Dependencies declare other packages that this package depends on.
18-
// .package(url: /* package url */, from: "1.0.0"),
1916
.package(path: "../Utils")
2017
],
2118
targets: [
22-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
23-
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2419
.target(
2520
name: "DateFormatterService",
2621
dependencies: ["Utils"]

SwiftUI-WorkoutApp/ShortAddressService/Package.swift

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,15 @@ let package = Package(
77
name: "ShortAddressService",
88
platforms: [.iOS(.v15)],
99
products: [
10-
// Products define the executables and libraries a package produces, and make them visible to other packages.
1110
.library(
1211
name: "ShortAddressService",
1312
targets: ["ShortAddressService"]
1413
)
1514
],
1615
dependencies: [
17-
// Dependencies declare other packages that this package depends on.
18-
// .package(url: /* package url */, from: "1.0.0"),
1916
.package(path: "../Utils")
2017
],
2118
targets: [
22-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
23-
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2419
.target(
2520
name: "ShortAddressService",
2621
dependencies: ["Utils"]

SwiftUI-WorkoutApp/Utils/Package.swift

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,13 @@ let package = Package(
77
name: "Utils",
88
platforms: [.iOS(.v15)],
99
products: [
10-
// Products define the executables and libraries a package produces, and make them visible to other packages.
1110
.library(
1211
name: "Utils",
1312
targets: ["Utils"]
1413
)
1514
],
16-
dependencies: [
17-
// Dependencies declare other packages that this package depends on.
18-
// .package(url: /* package url */, from: "1.0.0"),
19-
],
15+
dependencies: [],
2016
targets: [
21-
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
22-
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2317
.target(
2418
name: "Utils",
2519
dependencies: []

0 commit comments

Comments
 (0)