mccutchen / go-httpbin

A reasonably complete and well-tested golang port of httpbin, with zero dependencies outside the go stdlib.
https://httpbingo.org
MIT License
596 stars 124 forks source link

feat: use enhanced stdlib HTTP router #181

Closed mccutchen closed 2 months ago

mccutchen commented 2 months ago

Use the enhanced support for defining HTTP routes including methods and path parameters introduced in Go 1.22 to clean up and simplify fiddly handler code for manually extracting path params from URLs.

See this post for more info on the routing updates.