UNPKG

school-schedule-sync

Version:

Synchronization between JSON schedule and Google Calendar

12 lines (9 loc) 226 B
/* istanbul ignore file */ import { createProfile } from '@anmiles/google-api-wrapper'; import { error } from '@anmiles/logger'; try { createProfile(process.argv[2]); } catch (ex: unknown) { error(ex); process.exit(1); }