package utils import ( "fmt" "testing" ) /* * @author: sre @date: 2022/8/10 0010 @desc: test md5String * */ func TestMd5String(t *testing.T) { s := Md5String("hello") fmt.Println(s) }