From 87c6cd40a71e90a08db416ca43f653a02d86042c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=BC=E3=83=BC=E3=83=AC?= Date: Mon, 12 May 2025 14:47:06 +0500 Subject: [PATCH] Delete api/v1/src/notes.js --- api/v1/src/notes.js | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 api/v1/src/notes.js diff --git a/api/v1/src/notes.js b/api/v1/src/notes.js deleted file mode 100644 index cc5c93b..0000000 --- a/api/v1/src/notes.js +++ /dev/null @@ -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;