middleware

package
v0.0.0-...-f1ec9a5 Latest Latest
Warning

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

Go to latest
Published: Jul 7, 2026 License: Apache-2.0 Imports: 4 Imported by: 0

README

middleware

middleware contains the default HTTP middleware used by httpapp.

Use Default when you want to compose framework defaults with service-specific middleware:

stack := append(middleware.Default(logger), cors, addRequestID)

app := httpapp.NewService(
	httpapp.WithServiceMiddleware(stack...),
)

The first middleware in a stack is outermost.

Defaults:

  • LogRequests
  • RecoverPanics

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Middleware

type Middleware func(http.Handler) http.Handler

Middleware wraps an HTTP handler. The first middleware in a list is outermost.

func Default

func Default(logger *slog.Logger) []Middleware

Default returns the default HTTP middleware stack.

func LogRequests

func LogRequests(logger *slog.Logger) Middleware

LogRequests logs completed HTTP requests.

func RecoverPanics

func RecoverPanics(logger *slog.Logger) Middleware

RecoverPanics recovers HTTP panics and writes a 500 response.

Jump to

Keyboard shortcuts

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