fix(healthcheck/utils): unused function
Some checks failed
build / build (push) Failing after 1m25s
build / trigger-build-image (push) Has been skipped

This commit is contained in:
zzjc1234 2024-10-21 15:26:07 +08:00
parent 348eaa247c
commit c8f377245f

View File

@ -5,15 +5,6 @@ import (
"regexp" "regexp"
) )
func inString(str1 string, strList []string) bool {
for _, str := range strList {
if str1 == str {
return true
}
}
return false
}
// addExt appends the specified extension to each file name in the given fileList. // addExt appends the specified extension to each file name in the given fileList.
// It modifies the original fileList in place. // It modifies the original fileList in place.
func addExt(fileList []string, ext string) { func addExt(fileList []string, ext string) {