Skip to content

v0.0.4

Choose a tag to compare

@2hmad 2hmad released this 08 Apr 11:37
· 130 commits to master since this release

🚀 New

  • Handle dynamic routes
router.Get("/users/:id/:name", func(ctx *Context) error {
  param := ctx.Param("name")
  ctx.String(param)
  return nil
})

🧹 Updates

  • Delete store from the structure

🐛 Bugs

  • Fix bugs in routing