import path from 'path'; export function getDirPath(id) { return `/tmp/pdfer-${id}`; } export function getDocPath(id) { return path.join(getDirPath(id), 'doc.tex'); } export function getPdfPath(id) { return path.join(getDirPath(id), 'doc.pdf'); }