1 2 3 4 5 6 7 8
package middleware import "github.com/gofiber/fiber/v2" func JSON(context *fiber.Ctx) error { context.Accepts("application/json") return context.Next() }