Shuo/src/helper.js

9 lines
151 B
JavaScript
Raw Normal View History

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