| 1234567891011121314151617 | // Copyright 2017 Bo-Yi Wu.  All rights reserved.// Use of this source code is governed by a MIT style// license that can be found in the LICENSE file.//默认使用 json-iteratorpackage jsonimport jsoniter "git.ikuban.com/server/json"var (	json          = jsoniter.ConfigCompatibleWithStandardLibrary	Marshal       = json.Marshal	Unmarshal     = json.Unmarshal	MarshalIndent = json.MarshalIndent	NewDecoder    = json.NewDecoder	NewEncoder    = json.NewEncoder)
 |