UNPKG

school-schedule-sync

Version:

Synchronization between JSON schedule and Google Calendar

14 lines (10 loc) 280 B
import path from 'path'; const dirPaths = { config: 'config', }; export function getScheduleFile(): string { return path.join(dirPaths.config, 'schedule.json'); } export function getSampleScheduleFile(): string { return path.join(dirPaths.config, 'schedule.sample.json'); }