UNPKG

@netcentric/cm-notify

Version:

Adobe Cloud Manager Pipeline Notifications to Slack, Teams and Email

14 lines (11 loc) 304 B
const app = require('./app'); const { createHttpServer } = require('./createHttpServer'); const { DEFAULT_CONFIG } = require('../config'); /** * Start the app * @param port */ const startApp = (port) => { return createHttpServer(app, port || DEFAULT_CONFIG.port); } module.exports = { startApp };