mirror of
https://github.com/fabrice404/olympics-calendar.git
synced 2025-12-29 00:58:57 +00:00
11 lines
207 B
TypeScript
11 lines
207 B
TypeScript
import { Calendar } from "./calendar";
|
|
|
|
const main = async () => {
|
|
for (const language of ["en", "ja", "ko", "ru", "zh"]) {
|
|
const cal = new Calendar(language)
|
|
await cal.generate();
|
|
}
|
|
};
|
|
|
|
main();
|