Since go version 1.22+, the native net/http has brought some new features, including: - [x] Path parameters, e.g. `/products/{id}` - [ ] Method based routing, e.g. `"GET /products/{id}"` - [ ] Host based routing, e.g. `"example.com/products/{id}"` - ???