UNPKG

school-schedule-sync

Version:

Synchronization between JSON schedule and Google Calendar

11 lines (8 loc) 210 B
/* istanbul ignore file */ import { login } from '@anmiles/google-api-wrapper'; import { error } from '@anmiles/logger'; login(process.argv[2]) .catch((ex: unknown) => { error(ex); process.exit(1); });