school-schedule-sync
Version:
Synchronization between JSON schedule and Google Calendar
18 lines • 647 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getScheduleFile = getScheduleFile;
exports.getSampleScheduleFile = getSampleScheduleFile;
const path_1 = __importDefault(require("path"));
const dirPaths = {
config: 'config',
};
function getScheduleFile() {
return path_1.default.join(dirPaths.config, 'schedule.json');
}
function getSampleScheduleFile() {
return path_1.default.join(dirPaths.config, 'schedule.sample.json');
}
//# sourceMappingURL=paths.js.map