From 45ae6a9d3183c9ec9c67578229b44b737c473d9c Mon Sep 17 00:00:00 2001 From: Sky Johnson Date: Sat, 5 Apr 2025 22:27:19 -0500 Subject: [PATCH] finish move to goccy/go-json --- core/http/Server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/http/Server.go b/core/http/Server.go index 2024b71..902c67a 100644 --- a/core/http/Server.go +++ b/core/http/Server.go @@ -2,7 +2,6 @@ package http import ( "context" - "encoding/json" "fmt" "time" @@ -13,6 +12,7 @@ import ( "Moonshark/core/utils/config" "Moonshark/core/utils/logger" + "github.com/goccy/go-json" "github.com/valyala/fasthttp" )