mirror of https://github.com/gofiber/fiber.git
🔃 Use internal json package as the default json encoder
parent
3e2dd90be4
commit
704b306809
3
app.go
3
app.go
|
@ -12,7 +12,6 @@ package fiber
|
|||
import (
|
||||
"bufio"
|
||||
"crypto/tls"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
"fmt"
|
||||
"net"
|
||||
|
@ -27,9 +26,9 @@ import (
|
|||
"time"
|
||||
|
||||
"github.com/gofiber/fiber/v2/internal/colorable"
|
||||
"github.com/gofiber/fiber/v2/internal/encoding/json"
|
||||
"github.com/gofiber/fiber/v2/internal/isatty"
|
||||
"github.com/gofiber/fiber/v2/utils"
|
||||
|
||||
"github.com/valyala/fasthttp"
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in New Issue