Currently path parameter can not be without a following `/` character. ```go r.POST("/users/:id", handler) // <- doesn't work r.POST("/users/:id/", handler) // <- does work ``` Unless fixed, the workaround is to add the following slash in the end of path.
Currently path parameter can not be without a following
/character.Unless fixed, the workaround is to add the following slash in the end of path.