How to change the naming style of path parameters? #2720
Unanswered
cyberxnomad
asked this question in
Q&A
Replies: 1 comment
-
|
Echo's router uses The e.GET("/users/:id", handler)
// Inside handler
id := c.Param("id")If
If it's purely cosmetic and you're open to keeping Echo, the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Example:
/users/:idI'd like to use a style like
/users/{id}Is there a way to change it?
Beta Was this translation helpful? Give feedback.
All reactions