11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
function getVerifiedUsers() {
|
|
const filePath = path.join(__dirname, 'is_verified.json');
|
|
const fileData = fs.readFileSync(filePath, 'utf-8');
|
|
return JSON.parse(fileData);
|
|
}
|
|
|
|
module.exports = getVerifiedUsers;
|