Merge branch 'v0.11' into patch-1

This commit is contained in:
Tom Kerkhove 2021-01-02 13:19:56 +01:00 committed by GitHub
commit 2a6c253098
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -49,9 +49,9 @@ Your handler implementation can include any inbound logic, outbound logic, or bo
func GetHandler(metadata Metadata) fasthttp.RequestHandler { func GetHandler(metadata Metadata) fasthttp.RequestHandler {
return func(h fasthttp.RequestHandler) fasthttp.RequestHandler { return func(h fasthttp.RequestHandler) fasthttp.RequestHandler {
return func(ctx *fasthttp.RequestCtx) { return func(ctx *fasthttp.RequestCtx) {
//inboud logic // inboud logic
h(ctx) //call the downstream handler h(ctx) // call the downstream handler
//outbound logic // outbound logic
} }
} }
} }

View File

@ -1,4 +1,3 @@
--- ---
type: docs type: docs
title: "Apple Push Notification Service binding spec" title: "Apple Push Notification Service binding spec"