[AIP-136 documentation](https://google.aip.dev/136) # Proposal Include support for custom path methods either through standard path declaration (example 1) or subroute declaration (example 2) # Examples ## 1 - standard path declaration ```go r.Post("/foo/{fooID}:bar", fooBarHandler) ``` ## 2 - subroute declaration ```go r.Route("/foo/{fooID}", func(r chi.Router) { r.Post(":bar", fooBarHandler) }) ```