feat: support PyPi package extras

This commit is contained in:
Sahilb315
2025-06-02 02:42:55 +05:30
parent 2dd62d6a42
commit a38af3abb1
7 changed files with 55 additions and 11 deletions
+10
View File
@@ -0,0 +1,10 @@
package utils
func Contains(slice []string, item string) bool {
for _, s := range slice {
if s == item {
return true
}
}
return false
}