re-added solofield, added mullvad for brave and google

This commit is contained in:
2025-09-07 14:26:51 -04:00
parent 0c90c4bc9e
commit 73f8472eec
5 changed files with 407 additions and 2 deletions

20
scraper/mullvad_brave.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
class mullvad_brave{
public function __construct(){
include "scraper/mullvad.php";
$this->mullvad = new mullvad("brave");
}
public function getfilters($page){
return $this->mullvad->getfilters($page);
}
public function web($get){
return $this->mullvad->web($get);
}
}