mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 14:44:13 +00:00
10 lines
220 B
JavaScript
10 lines
220 B
JavaScript
var path = require("path");
|
|
|
|
module.exports = {
|
|
HOME: (process.env.HOME || process.env.USERPROFILE) + "/.lounge",
|
|
getConfig: getConfig
|
|
};
|
|
|
|
function getConfig() {
|
|
return require(path.resolve(this.HOME) + "/config");
|
|
}
|