Go theorytheory 0/50 · 0%
Web · medium

27. HTTP Servers

net/http and handlers.

http.Handler has one method, ServeHTTP. Multiplexers route paths to handlers, and middleware wraps a handler to add logging, auth or recovery. Configure timeouts on the Server struct and use context for per-request cancellation.

Check your understanding

  1. 1. The core server interface is…

  2. 2. Middleware in Go is typically…