Files
olympics-calendar/scraper/dev.ts
2025-12-06 20:23:11 +01:00

9 lines
136 B
TypeScript

import { Scraper } from "./scraper";
const main = async () => {
const scraper = new Scraper();
await scraper.scrape();
};
main();