初始化v1

This commit is contained in:
2025-08-03 00:11:15 +08:00
commit b88c8b8afa
171 changed files with 22353 additions and 0 deletions

8
utility/helper/string.go Normal file
View File

@@ -0,0 +1,8 @@
package helper
import "strings"
// Contains 检查字符串是否包含子字符串(忽略大小写)
func Contains(s, substr string) bool {
return strings.Contains(strings.ToLower(s), strings.ToLower(substr))
}