test download command

This commit is contained in:
Watn3y 2023-04-21 07:35:42 +02:00
parent 33d529ad51
commit 24bbd8926c
9 changed files with 219 additions and 2 deletions

View file

@ -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
}