summaryrefslogtreecommitdiff
path: root/app/scrapers/index.ts
diff options
context:
space:
mode:
authoryyamashita <yyamashita@hetzner.yyamashita.com>2026-07-03 10:23:41 +0900
committeryyamashita <yyamashita@hetzner.yyamashita.com>2026-07-03 10:23:41 +0900
commit44f9ef0d9caa0d9cce06635f6c0c7e045fef2796 (patch)
treeae0f5c8ee341bfdd0430ad806ba8e6604636a9ef /app/scrapers/index.ts
parent272f7d079cbac81c9af86b9f210ace8cabc0e98c (diff)
Add scrapers for 新宿MARZ and 東高円寺U.F.O.CLUB
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'app/scrapers/index.ts')
-rw-r--r--app/scrapers/index.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/app/scrapers/index.ts b/app/scrapers/index.ts
index 21e6847..79e8125 100644
--- a/app/scrapers/index.ts
+++ b/app/scrapers/index.ts
@@ -25,6 +25,8 @@ import { scraper as denAtsu } from "./den-atsu";
import { scraper as buzzfrontYokohama } from "./buzzfront-yokohama";
import { scraper as ripsHachioji } from "./rips-hachioji";
import { scraper as matchvoxHachioji } from "./matchvox-hachioji";
+import { scraper as marzShinjuku } from "./marz-shinjuku";
+import { scraper as ufoclubHigashikoenji } from "./ufoclub-higashikoenji";
export const ALL_SCRAPERS: Scraper[] = [
liquidRoom,
@@ -49,6 +51,8 @@ export const ALL_SCRAPERS: Scraper[] = [
buzzfrontYokohama,
ripsHachioji,
matchvoxHachioji,
+ marzShinjuku,
+ ufoclubHigashikoenji,
];
export type { Scraper } from "./base";