1 Star 0 Fork 0

ThinCats / codegen-tool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
strings.go 207 Bytes
一键复制 编辑 原始数据 按行查看 历史
package helper
import (
"encoding/json"
)
// MustJSONMarshal json.Marshal must
func MustJSONMarshal(v interface{}) string {
b, err := json.Marshal(v)
if err != nil {
panic(err)
}
return string(b)
}
1
https://gitee.com/thincats/codegen-tool.git
git@gitee.com:thincats/codegen-tool.git
thincats
codegen-tool
codegen-tool
6e8508981fc8

搜索帮助