diff options
author | lolcat <will@lolcat.ca> | 2024-01-06 19:38:11 -0500 |
---|---|---|
committer | lolcat <will@lolcat.ca> | 2024-01-06 19:38:11 -0500 |
commit | fa6cefb6edd5184f605bd1af0e1b5ffe82b495c5 (patch) | |
tree | 9f9d88c8eefffcdc18dbb248b260f1288bb3b1ad /lib/frontend.php | |
parent | 479545165a38bc13875587c57d27cd3b757e1222 (diff) |
hey im not dead, curlie scraper ok bye
Diffstat (limited to 'lib/frontend.php')
-rw-r--r-- | lib/frontend.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/frontend.php b/lib/frontend.php index a5035b6..b002ee9 100644 --- a/lib/frontend.php +++ b/lib/frontend.php @@ -895,7 +895,8 @@ class frontend{ "yep" => "Yep", "mojeek" => "Mojeek", "marginalia" => "Marginalia", - "wiby" => "wiby" + "wiby" => "wiby", + "curlie" => "Curlie" ] ]; break; @@ -948,6 +949,7 @@ class frontend{ "display" => "Scraper", "option" => [ "sc" => "SoundCloud" + //"spotify" => "Spotify" ] ]; break; @@ -1022,6 +1024,11 @@ class frontend{ $lib = new wiby(); break; + case "curlie": + include "scraper/curlie.php"; + $lib = new curlie(); + break; + case "yep": include "scraper/yep.php"; $lib = new yep(); @@ -1032,6 +1039,11 @@ class frontend{ $lib = new sc(); break; + case "spotify": + include "scraper/spotify.php"; + $lib = new spotify(); + break; + case "pinterest": include "scraper/pinterest.php"; $lib = new pinterest(); |