import { Prompt } from '@/lib/types'; export class JimmyLvCrawler { async crawl(): Promise { console.log("[JimmyLvCrawler] Crawling not implemented"); return []; } } export class YouMindCrawler { async crawl(): Promise { console.log("[YouMindCrawler] Crawling not implemented"); return []; } } export class ZeroLuCrawler { async crawl(): Promise { console.log("[ZeroLuCrawler] Crawling not implemented"); return []; } }