File size: 223 Bytes
7f6dd09
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import fs from "fs";
import config from "../config.js";

export default function setupTmp() {
  fs.mkdirSync(config.sharedTmpPath, { recursive: true });
  console.log("Shared tmp directory ready:", config.sharedTmpPath);
}