package middlewares import ( "github.com/gofiber/fiber/v3" ) func (f *Middlewares) DebugMode(c fiber.Ctx) error { // fullURI := c.Request().URI().FullURI() // host := c.BaseURL() // fmt.Println(strings.Split(c.Path(), "/")) // return c.SendString(c.Params("tenant", "no tenant: "+c.Path())) return c.Next() }