Shuo/src/helper.js

9 lines
151 B
JavaScript

module.exports = {
HOME: process.env.HOME + "/.shout",
getConfig: getConfig
};
function getConfig() {
return require(this.HOME + "/config.js");
};