This commit is contained in:
Nikhil Nawgiri 2024-10-26 21:39:30 +02:00
parent bc4203c1d1
commit fb548f9445

View file

@ -2,6 +2,5 @@ import * as fs from "fs";
export const saveJsonToDisk = (content: {}) => {
const outputPath = `../database.json`;
fs.writeFileSync(outputPath, JSON.stringify(content));
}