Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion chi.go
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ type Router interface {
// Use appends one or more middlewares onto the Router stack.
Use(middlewares ...func(http.Handler) http.Handler)

// With adds inline middlewares for an endpoint handler.
// With adds inline middlewares for an endpoint handler,
// applying them only to the specific route(s) defined on it.
With(middlewares ...func(http.Handler) http.Handler) Router

// Group adds a new inline-Router along the current routing
Expand Down