Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewMiddleware ¶
func NewMiddleware(opts ...Option) bunrouter.MiddlewareFunc
Types ¶
type Option ¶
type Option func(m *middleware)
func FromEnv ¶
WithEnv configures the middleware using the environment variable value. For example, WithEnv("BUNDEBUG"):
- BUNDEBUG=0 - disables the middleware.
- BUNDEBUG=1 - enables the middleware.
- BUNDEBUG=2 - enables the middleware and verbose mode.
func WithVerbose ¶
WithVerbose configures the middleware to log all requests.
type ResponseWriter ¶ added in v1.0.14
type ResponseWriter struct { Wrapped http.ResponseWriter // contains filtered or unexported fields }
func NewResponseWriter ¶ added in v1.0.14
func NewResponseWriter(w http.ResponseWriter) *ResponseWriter
func (*ResponseWriter) StatusCode ¶ added in v1.0.14
func (w *ResponseWriter) StatusCode() int
Click to show internal directories.
Click to hide internal directories.