dcsunny 4 年之前
父节点
当前提交
900f7e3d26
共有 1 个文件被更改,包括 1 次插入3 次删除
  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