BetterDiscordApp-v2/core/src/modules/config.js

24 lines
345 B
JavaScript

class Config {
constructor(args) {
this.args = args;
}
get version() {
return this.args.version;
}
get paths() {
return this.args.paths;
}
get config() {
return {
'version': this.version,
'paths': this.paths
};
}
}
module.exports = { Config };