change references from /swift-server to /awslabs (#591)

Change Examples, README, and doc to refer to https://github.org/awslabs
instead of https://github.org/swift-server

---------

Co-authored-by: Sebastien Stormacq <stormacq@amazon.lu>
This commit is contained in:
Sébastien Stormacq
2025-10-17 16:46:58 +02:00
committed by GitHub
parent 8116ba3023
commit dee635267b
59 changed files with 114 additions and 114 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ let package = Package(
name: "Palindrome",
platforms: [.macOS(.v15)],
dependencies: [
.package(url: "https://github.com/swift-server/swift-aws-lambda-runtime.git", from: "2.0.0")
.package(url: "https://github.com/awslabs/swift-aws-lambda-runtime.git", from: "2.0.0")
],
targets: [
// Targets are the basic building blocks of a package, defining a module or a test suite.
@@ -32,7 +32,7 @@ if let localDepsPath = Context.environment["LAMBDA_USE_LOCAL_DEPS"],
let indexToRemove = package.dependencies.firstIndex { dependency in
if case .sourceControl(
name: _,
location: "https://github.com/swift-server/swift-aws-lambda-runtime.git",
location: "https://github.com/awslabs/swift-aws-lambda-runtime.git",
requirement: _
) = dependency.kind {
return true