UNPKG

school-schedule-sync

Version:

Synchronization between JSON schedule and Google Calendar

13 lines (8 loc) 207 B
/* istanbul ignore file */ import { error } from '@anmiles/logger'; import { run } from './lib/app'; run(process.argv[2], process.argv[3]) .catch((ex: unknown) => { error(ex); process.exit(1); });