Go 1.22+ net/http new features support
Opened this issue · 0 comments
ggicci commented
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}"
- ???