summaryrefslogtreecommitdiff
path: root/app/scrapers/index.ts
blob: 81a0eb73a5fba8964ba1afba1973d809ed777cb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
 * 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";
import { scraper as meetsOtsuka } from "./meets-otsuka";
import { scraper as warpKichijoji } from "./warp-kichijoji";
import { scraper as flatNishiogikubo } from "./flat-nishiogikubo";
import { scraper as pitbarNishiogikubo } from "./pitbar-nishiogikubo";

export const ALL_SCRAPERS: Scraper[] = [
  liquidRoom,
  wwwShibuya,
  shibuyaO,
  shinjukuLoft,
  clubQuattro,
  meetsOtsuka,
  warpKichijoji,
  flatNishiogikubo,
  pitbarNishiogikubo,
];

export type { Scraper } from "./base";