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