Closed jrCleber closed 1 week ago
I'm using fiber. In the documentation there is an option to make it faster, but the Config struct is no longer available, does this mean that this implementation is no longer needed?
package main import "github.com/gofiber/fiber/v2" import "github.com/goccy/go-json" func main() { app := fiber.New(fiber.Config{ JSONEncoder: json.Marshal, JSONDecoder: json.Unmarshal, }) # ... }
Hi, sorry i missed this report. Hopefully you found the answer. The example should work on v2 and v3.
Question Description
I'm using fiber. In the documentation there is an option to make it faster, but the Config struct is no longer available, does this mean that this implementation is no longer needed?
Code Snippet (optional)
Checklist: