summaryrefslogtreecommitdiff
path: root/vendor/github.com/gorilla/mux/route.go
AgeCommit message (Collapse)Author
2024-10-22Remove github.com/gorilla/mux dependencyxengineering
The reason for the introduction of this dependency was that it was easy to setup routes with HTTP method restrictions. Since Go 1.22 this feature is part of the standard library. Method restrictions are part of the patterns used to register routes [1]. [1]: https://pkg.go.dev/net/http#hdr-Patterns-ServeMux
2023-12-27Add github.com/gorilla/muxxengineering
This dependency provides a more extended HTTP routing than the Go standard library.