middleware

package
v13.0.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Apr 16, 2025 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Overview

Package middleware implements a middleware combiner. For implementations of middleware, see the middlewares package

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Use

func Use(endpoint http.Handler, middlewares ...func(next http.Handler) http.Handler) http.Handler

Use will combine multiple middleware functions and apply them to the specified endpoint. Middleware is defined as:

func(next http.Handler) http.Handler

Middleware is called (by calling ServeHTTP() on it, or as a http.HandlerFunc) and it should either: - respond via the http.ResponseWriter, typically with an error - call the next middleware Optionally it may also do something useful, such as modifying the context. Eventually, once all the middleware has been called, the endpoint will be called

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL