Sean Holcomb 5 vuotta sitten
vanhempi
sitoutus
8496f11c95
1 muutettua tiedostoa jossa 4 lisäystä ja 2 poistoa
  1. 4 2
      pkg/util/json/json.go

+ 4 - 2
pkg/util/json/json.go

@@ -1,12 +1,14 @@
 package json
 
 import (
-    "encoding/json"
+	"encoding/json"
 
-    jsoniter "github.com/json-iterator/go"
+	jsoniter "github.com/json-iterator/go"
 )
 
 var Marshal = jsoniter.ConfigCompatibleWithStandardLibrary.Marshal
 var Unmarshal = jsoniter.ConfigCompatibleWithStandardLibrary.Unmarshal
+
 type Marshaler json.Marshaler
+
 var NewDecoder = json.NewDecoder