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