19 lines
532 B
Go
19 lines
532 B
Go
|
package web2
|
||
|
|
||
|
import (
|
||
|
"github.com/gofiber/fiber/v2"
|
||
|
)
|
||
|
|
||
|
func (s *Server) Routes() {
|
||
|
s.router.Get("/hello", func(c *fiber.Ctx) error {
|
||
|
return c.SendString("Hello, World!")
|
||
|
})
|
||
|
//s.router.Get("/login", adaptor.HTTPHandlerFunc(auth.LoginHandler))
|
||
|
|
||
|
// 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 { }
|
||
|
}
|