We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2685caf
router.Get("/profile", func(ctx *Context) error { ctx.String("hello world!") return nil }) router.Use("Get", CORSMiddleware())
8e4ed70
router.Get("/users/:id/:name", func(ctx *Context) error { param := ctx.Param("name") ctx.String(param) return nil })