15 lines
222 B
JavaScript
15 lines
222 B
JavaScript
const fs = require('fs');
|
|
|
|
module.exports = class Config {
|
|
constructor(path) {
|
|
this.path = path;
|
|
this.Config = { };
|
|
}
|
|
|
|
load() {
|
|
if (fs.existsSync(path)) {
|
|
|
|
}
|
|
}
|
|
}
|