7 lines
165 B
Text
7 lines
165 B
Text
function SlackConfig () {
|
|
this.slackWebHook = null;
|
|
this.slackErrorChannel = null;
|
|
this.slackInfoChannel = null;
|
|
};
|
|
|
|
module.exports = new SlackConfig();
|