This commit is contained in:
Eric 1549169735@qq.com
2026-09-13 20:08:13 +08:00
parent 7cc06976ab
commit da3f16e6db
65 changed files with 3855 additions and 2153 deletions

11
internal/run/helpers.go Normal file
View File

@@ -0,0 +1,11 @@
package run
// containsString reports whether the slice contains the value.
func containsString(values []string, target string) bool {
for _, value := range values {
if value == target {
return true
}
}
return false
}