Delete api/v1/src/notes.js

This commit is contained in:
2025-05-12 14:47:06 +05:00
committed by GitHub
parent b2d694927f
commit 87c6cd40a7

View File

@@ -1,10 +0,0 @@
const fs = require('fs');
const path = require('path');
function getReleaseNote() {
const filePath = path.join(__dirname, 'notes.json');
const fileData = fs.readFileSync(filePath, 'utf-8');
return JSON.parse(fileData);
}
module.exports = getReleaseNote;