fix(slickvpn/updater): update existing hostnames from servers.json

- SlickVPN location website is now total garbage which cannot be parsed
This commit is contained in:
Quentin McGaw
2025-12-23 02:50:15 +00:00
parent 92237658c3
commit e806fe02db
12 changed files with 52 additions and 695 deletions
+6
View File
@@ -22,6 +22,12 @@ 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) {