Skip to content

Commit cd470a8

Browse files
committed
move package to top level
1 parent 1c35431 commit cd470a8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

swift-bedrock-library/Package.swift renamed to Package.swift

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ let package = Package(
2929
.product(name: "Logging", package: "swift-log"),
3030
.product(name: "AwsCommonRuntimeKit", package: "aws-crt-swift"),
3131
],
32-
path: "Sources/BedrockService"
32+
path: "swift-bedrock-library/Sources/BedrockService"
3333
),
3434
.target(
3535
name: "BedrockTypes",
@@ -38,22 +38,22 @@ let package = Package(
3838
.product(name: "AWSBedrock", package: "aws-sdk-swift"),
3939
.product(name: "Smithy", package: "smithy-swift"),
4040
],
41-
path: "Sources/BedrockTypes"
41+
path: "swift-bedrock-library/Sources/BedrockTypes"
4242
),
4343
.testTarget(
4444
name: "BedrockServiceTests",
4545
dependencies: [
4646
.target(name: "BedrockService"),
4747
.target(name: "BedrockTypes"),
4848
],
49-
path: "Tests/BedrockServiceTests"
49+
path: "swift-bedrock-library/Tests/BedrockServiceTests"
5050
),
5151
.testTarget(
5252
name: "BedrockTypesTests",
5353
dependencies: [
5454
.target(name: "BedrockTypes")
5555
],
56-
path: "Tests/BedrockTypesTests"
56+
path: "swift-bedrock-library/Tests/BedrockTypesTests"
5757
),
5858
]
5959
)

0 commit comments

Comments
 (0)