kit/web/routes.go

19 lines
531 B
Go
Raw Normal View History

2023-07-04 15:53:14 +00:00
package web
import (
"github.com/gofiber/fiber/v2"
)
func (s *Server) Routes() {
s.router.Get("/hello", func(c *fiber.Ctx) error {
return c.SendString("Hello, World!")
})
2023-07-04 16:17:09 +00:00
//s.router.Get("/login", adaptor.HTTPHandlerFunc(auth.LoginHandler))
2023-07-04 15:53:14 +00:00
// http.HandlerFunc -> fiber.Handler
//app.Get("/greet", adaptor.HTTPHandlerFunc(greet)
// where : func greet(w http.ResponseWriter, r *http.Request) { }
//app.Get("/greet", adaptor.HTTPHandler(handler(greet))
// where : func handler(f http.HandlerFunc) http.Handler { }
}