mirror of
https://github.com/danbulant/bpm
synced 2026-05-19 04:08:47 +00:00
7 lines
No EOL
193 B
JavaScript
7 lines
No EOL
193 B
JavaScript
const fs = require("fs");
|
|
|
|
module.exports = ()=>{
|
|
if(!global.config)
|
|
global.config = JSON.parse(fs.readFileSync(__dirname + "/../packages/config.json"));
|
|
return global.config;
|
|
} |