Files
SaveAny-Bot/types/utils.go
2025-03-22 11:52:43 +08:00

13 lines
175 B
Go

package types
import (
"crypto/md5"
"encoding/hex"
)
func hashStr(s string) string {
hash := md5.New()
hash.Write([]byte(s))
return hex.EncodeToString(hash.Sum(nil))
}