Update login.js

This commit is contained in:
2025-05-27 19:57:28 +05:00
committed by GitHub
parent 3d1cae32a5
commit f549db7e54

View File

@@ -2,7 +2,7 @@ const fs = require('fs');
const path = require('path');
function getLoginUsers() {
const filePath = path.join(__dirname, 'login.json');
const filePath = path.join(__dirname, 'logins.json');
const fileData = fs.readFileSync(filePath, 'utf-8');
return JSON.parse(fileData);
}