Skip to content

Releases: gopulse/pulse

v0.0.5

08 Apr 11:48
Compare
Choose a tag to compare

πŸš€ New

  • Support middlewares
router.Get("/profile", func(ctx *Context) error {
  ctx.String("hello world!")
  return nil
})

router.Use("Get", CORSMiddleware())

v0.0.4

08 Apr 11:37
Compare
Choose a tag to compare

πŸš€ 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

v0.0.3

08 Apr 11:37
Compare
Choose a tag to compare

🧹 Updates

  • Clean store code structure
  • Delete route params handler for now

πŸ› Bugs

  • Fix handler bugs

v0.0.2

08 Apr 11:37
Compare
Choose a tag to compare

πŸš€ New

  • Handle routes in fasthttp requests

v0.0.1

08 Apr 11:36
Compare
Choose a tag to compare
  • Release the first version of the package
  • Fix some bugs