1 Star 0 Fork 0

yanghao / go-admin-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
changeset.go 211 Bytes
一键复制 编辑 原始数据 按行查看 历史
yanghao 提交于 2021-11-28 13:56 . first commit
package source
import (
"crypto/md5"
"fmt"
)
// Sum returns the md5 checksum of the ChangeSet data
func (c *ChangeSet) Sum() string {
h := md5.New()
h.Write(c.Data)
return fmt.Sprintf("%x", h.Sum(nil))
}
1
https://gitee.com/fexeak/go-admin-core.git
git@gitee.com:fexeak/go-admin-core.git
fexeak
go-admin-core
go-admin-core
v1.0.2

搜索帮助