1
0
Fork 0
forked from jriou/coller

feat: Add Command-line clients link and web page

Signed-off-by: Julien Riou <julien@riou.xyz>
This commit is contained in:
Julien Riou 2025-09-20 06:36:28 +02:00
commit 70d3892b15
Signed by: jriou
GPG key ID: 9A099EDA51316854
7 changed files with 166 additions and 30 deletions

View file

@ -117,3 +117,12 @@ func ToLowerStringSlice(src []string) (dst []string) {
}
return
}
func InSlice(s []string, elem string) bool {
for _, v := range s {
if v == elem {
return true
}
}
return false
}