mirror of
https://github.com/fabrice404/olympics-calendar.git
synced 2025-12-13 06:39:47 +00:00
9 lines
136 B
TypeScript
9 lines
136 B
TypeScript
import { Scraper } from "./scraper";
|
|
|
|
const main = async () => {
|
|
const scraper = new Scraper();
|
|
await scraper.scrape();
|
|
};
|
|
|
|
main();
|