fix: remove unused Md5 function

This commit is contained in:
2026-04-19 18:39:51 +08:00
parent 84811ec52c
commit cc76b49c66
-5
View File
@@ -124,11 +124,6 @@ func Sign(a []string) string {
return fmt.Sprintf("%x", has)
}
func Md5(s string) string {
has := md5.Sum([]byte(s))
return fmt.Sprintf("%x", has)
}
func Contains(s []string, str string) bool {
for _, v := range s {
if v == str {