Skip to content

Commit

Permalink
Remove redundant paths in Package.swift
Browse files Browse the repository at this point in the history
Removed the explicit path specification for the 'OpenTDFKit' and 'OpenTDFKitTests' targets in Package.swift. Swift Package Manager by default looks at the directory that matches the target name, rendering these paths unnecessary. This change cleans up the code and reduces redundancy.
  • Loading branch information
arkavo-com committed Jun 14, 2024
1 parent d997f03 commit ffae2fe
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,8 @@ let package = Package(
.target(
name: "OpenTDFKit",
dependencies: ["BinaryParser", "CryptoHelper", "KASWebSocket", "NanoTDF"]),
path: "OpenTDFKit",
.testTarget(
name: "OpenTDFKitTests",
dependencies: ["OpenTDFKit"]),
path: "OpenTDFKitTests",
]
)

0 comments on commit ffae2fe

Please sign in to comment.