summaryrefslogtreecommitdiff
path: root/app/scrapers/index.ts
blob: 97d2586823b80da355dd14c95303d6e201d11ad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/**
 * 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";