agenda-paper
Version:
Show your daily agenda on an ePaper display
12 lines (9 loc) • 324 B
text/typescript
import fs from 'fs';
import { NextFunction, Request, Response } from 'express';
import { CONFIG_FOLDER } from '../constants';
export const verifyConfigFolderExists = () => async (req: Request, res: Response, next: NextFunction) => {
if (!fs.existsSync(CONFIG_FOLDER)) {
fs.mkdirSync(CONFIG_FOLDER);
}
next();
};