From fa6cefb6edd5184f605bd1af0e1b5ffe82b495c5 Mon Sep 17 00:00:00 2001 From: lolcat Date: Sat, 6 Jan 2024 19:38:11 -0500 Subject: hey im not dead, curlie scraper ok bye --- lib/frontend.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'lib') 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(); -- cgit v1.2.3