github.com/webx-top/com@v1.2.12/encoding/json/gojson.go (about) 1 // +build gojson 2 3 package json 4 5 import ( 6 "github.com/goccy/go-json" 7 ) 8 9 var ( 10 MarshalIndent = json.MarshalIndent 11 Marshal = json.Marshal 12 Unmarshal = json.Unmarshal 13 NewDecoder = json.NewDecoder 14 NewEncoder = json.NewEncoder 15 )