From 419cdd9638ae34037e69870b11309796bff163a5 Mon Sep 17 00:00:00 2001 From: Alexandre Hamez Date: Thu, 27 Mar 2025 14:12:17 +0100 Subject: [PATCH] fix(serverless): add missing parameters to Handle function signature in Go example --- .../how-to/package-function-dependencies-in-zip.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/serverless-functions/how-to/package-function-dependencies-in-zip.mdx b/pages/serverless-functions/how-to/package-function-dependencies-in-zip.mdx index c8e0cf8095..dd4af5f3a8 100644 --- a/pages/serverless-functions/how-to/package-function-dependencies-in-zip.mdx +++ b/pages/serverless-functions/how-to/package-function-dependencies-in-zip.mdx @@ -183,7 +183,7 @@ The example above will create a `.zip` archive that contains the myFunction fold . ├── go.mod ├── go.sum - └── handler.go → package handler with func Handle() + └── handler.go → package handler with func Handle(w http.ResponseWriter, r *http.Request) ```