thelounge/src/helper.js

9 lines
151 B
JavaScript
Raw Normal View History

2014-10-04 01:33:44 +02:00
module.exports = {
HOME: process.env.HOME + "/.shout",
getConfig: getConfig
};
2014-10-04 01:33:44 +02:00
function getConfig() {
return require(this.HOME + "/config.js");
};