ggicci/httpin

Go 1.22+ net/http new features support

Opened this issue · 0 comments

Since go version 1.22+, the native net/http has brought some new features, including:

  • Path parameters, e.g. /products/{id}
  • Method based routing, e.g. "GET /products/{id}"
  • Host based routing, e.g. "example.com/products/{id}"
  • ???