test download command
This commit is contained in:
parent
33d529ad51
commit
24bbd8926c
9 changed files with 219 additions and 2 deletions
|
@ -9,3 +9,13 @@ func ContainsInt64(a []int64, b int64) bool {
|
|||
|
||||
return false
|
||||
}
|
||||
|
||||
func ContainsString(a []string, b string) bool {
|
||||
for _, v := range a {
|
||||
if v == b {
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
return false
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue