Files
nullptr/config.js
2018-10-16 19:12:36 +01:00

15 lines
227 B
JavaScript

const fs = require('fs');
module.exports = class Config {
constructor(path) {
this.path = path;
this.Config = { };
}
load() {
if (fs.existsSync(this.path)) {
}
}
}