mirror of
https://github.com/Redume/Kekkai.git
synced 2025-02-24 05:01:26 +03:00
10 lines
227 B
JavaScript
10 lines
227 B
JavaScript
const fs = require('fs');
|
|
const yaml = require('yaml');
|
|
|
|
const config = () => {
|
|
if (!fs.existsSync('../config.yaml')) return;
|
|
|
|
return yaml.parse(fs.readFileSync('../config.yaml', 'utf-8'));
|
|
};
|
|
|
|
module.exports = config;
|