kodex-music-catalog/config-handler.js
2023-09-27 21:43:17 +03:00

6 lines
218 B
JavaScript

const fs = require('fs');
module.exports = () => {
const config = JSON.parse(fs.readFileSync("./config.json", { encoding : 'utf-8' }));
// Проверить конфиг на целостность
return config;
}