summaryrefslogtreecommitdiff
path: root/app/scrapers/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'app/scrapers/index.ts')
-rw-r--r--app/scrapers/index.ts14
1 files changed, 10 insertions, 4 deletions
diff --git a/app/scrapers/index.ts b/app/scrapers/index.ts
index 81a0eb7..2d7f1d1 100644
--- a/app/scrapers/index.ts
+++ b/app/scrapers/index.ts
@@ -9,9 +9,12 @@ 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";
+import { scraper as nineSpices } from "./nine-spices";
+import { scraper as nishieifukuJam } from "./nishieifuku-jam";
+import { scraper as feverShindaita } from "./fever-shindaita";
+import { scraper as moonStepNakano } from "./moon-step-nakano";
+import { scraper as modShibasaki } from "./mod-shibasaki";
export const ALL_SCRAPERS: Scraper[] = [
liquidRoom,
@@ -20,9 +23,12 @@ export const ALL_SCRAPERS: Scraper[] = [
shinjukuLoft,
clubQuattro,
meetsOtsuka,
- warpKichijoji,
flatNishiogikubo,
- pitbarNishiogikubo,
+ nineSpices,
+ nishieifukuJam,
+ feverShindaita,
+ moonStepNakano,
+ modShibasaki,
];
export type { Scraper } from "./base";