7 lines
180 B
JavaScript
7 lines
180 B
JavaScript
function SlackConfig () {
|
|
this.slackWebHook = 'default';
|
|
this.slackErrorChannel = 'default';
|
|
this.slackInfoChannel = 'default';
|
|
};
|
|
|
|
module.exports = new SlackConfig();
|