/** * Registry of all venue scrapers. * To add a new venue: create a new file implementing Scraper, then add it here. */ import type { Scraper } from "./base"; import { scraper as liquidRoom } from "./liquid-room"; import { scraper as wwwShibuya } from "./www-shibuya"; import { scraper as shibuyaO } from "./shibuya-o"; import { scraper as shinjukuLoft } from "./shinjuku-loft"; import { scraper as clubQuattro } from "./club-quattro"; export const ALL_SCRAPERS: Scraper[] = [ liquidRoom, wwwShibuya, shibuyaO, shinjukuLoft, clubQuattro, ]; export type { Scraper } from "./base";