Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50655 views
1
/*
2
* broadway.js: Top-level include for the broadway module.
3
*
4
* (C) 2011, Nodejitsu Inc.
5
* MIT LICENSE
6
*
7
*/
8
9
var path = require('path'),
10
utile = require('utile');
11
12
var broadway = exports;
13
14
broadway.App = require('./broadway/app').App;
15
broadway.common = require('./broadway/common');
16
broadway.features = require('./broadway/features');
17
broadway.formats = require('nconf').formats;
18
broadway.plugins = utile.requireDirLazy(path.join(__dirname, 'broadway', 'plugins'));
19
20
21