Com o Fiber v2.30.0, você pode executar funções personalizadas ao executar alguns métodos. Aqui está uma lista desses hooks:
Para mais informações sobre hooks, clique aqui
package main
import (
"fmt"
"github.com/gofiber/fiber/v2"
)
func main() {
app := fiber.New()
app.Get("/", func(c *fiber.Ctx) error {
return c.SendString(c.Route().Name)
}).Name("index")
app.Hooks().OnName(func(r fiber.Route) error {
fmt.Print("Name: " + r.Name + ", ")
return nil
})
fmt.Print("Method: " + r.Method + "\n")
app.Get("/add/user", func(c *fiber.Ctx) error {
}).Name("addUser")
app.Delete("/destroy/user", func(c *fiber.Ctx) error {
}).Name("destroyUser")
app.Listen(":5000")
}