mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-23 20:51:25 +03:00
13 lines
261 B
JavaScript
13 lines
261 B
JavaScript
|
const fs = require('fs');
|
||
|
const yaml = require('yaml');
|
||
|
|
||
|
const config = () => {
|
||
|
try {
|
||
|
fs.readFileSync('../config.yaml', 'utf-8');
|
||
|
} catch { return }
|
||
|
|
||
|
return yaml.parse(fs.readFileSync('../config.yaml', 'utf-8'));
|
||
|
}
|
||
|
|
||
|
|
||
|
module.exports = config;
|