mullvad_brave.php 304 B

1234567891011121314151617181920
  1. <?php
  2. class mullvad_brave{
  3. public function __construct(){
  4. include "scraper/mullvad.php";
  5. $this->mullvad = new mullvad("brave");
  6. }
  7. public function getfilters($page){
  8. return $this->mullvad->getfilters($page);
  9. }
  10. public function web($get){
  11. return $this->mullvad->web($get);
  12. }
  13. }