fix(slickvpn/updater): only keep 11 servers

- this reverts most of commit e806fe02db.
This commit is contained in:
Quentin McGaw
2025-12-23 03:03:47 +00:00
parent e806fe02db
commit beaa8b5589
10 changed files with 27 additions and 1400 deletions
-6
View File
@@ -22,12 +22,6 @@ func MatchData(data string) MatchFunc {
}
}
func MatchClasses(classStrings ...string) MatchFunc {
return func(node *html.Node) (match bool) {
return HasClassStrings(node, classStrings...)
}
}
func DirectChild(parent *html.Node,
matchFunc MatchFunc,
) (child *html.Node) {