Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 470 Bytes
652f343 deae345 652f343 7bea24d 652f343 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import { promises as fs } from "node:fs"
import path from "path"
import { VideoTask } from "../types.mts"
import { pendingTasksDirFilePath } from "../config.mts"
export const savePendingTask = async (task: VideoTask) => {
const fileName = `${task.id}.json`
const filePath = path.join(pendingTasksDirFilePath, fileName)
console.log("fileName:", fileName)
console.log("filePath:", filePath)
await fs.writeFile(filePath, JSON.stringify(task, null, 2), "utf8")
} |