Refactor code

This commit is contained in:
wenxu12345
2022-01-14 13:44:46 +08:00
parent 3e6302e44a
commit 3d994cc2cf
9 changed files with 653 additions and 640 deletions
-2
View File
@@ -31,7 +31,6 @@ func Int32ToString(i int32) string {
//judge a string whether in the string list
func IsContain(target string, List []string) bool {
for _, element := range List {
if target == element {
@@ -39,7 +38,6 @@ func IsContain(target string, List []string) bool {
}
}
return false
}
func InterfaceArrayToStringArray(data []interface{}) (i []string) {