dcsunny 4 anni fa
parent
commit
900f7e3d26
1 ha cambiato i file con 1 aggiunte e 3 eliminazioni
  1. 1 3
      common/json.go

+ 1 - 3
common/json.go

@@ -1,13 +1,11 @@
 package common
 
 import (
-	jsoniter "git.ikuban.com/server/json"
+	"encoding/json"
 
 	"google.golang.org/protobuf/types/known/structpb"
 )
 
-var json = jsoniter.ConfigCompatibleWithStandardLibrary
-
 func MarshalJSON(v interface{}) []byte {
 	j, _ := json.Marshal(v)
 	return j