You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
487 B
20 lines
487 B
/*
|
|
* broadway.js: Top-level include for the broadway module.
|
|
*
|
|
* (C) 2011, Nodejitsu Inc.
|
|
* MIT LICENSE
|
|
*
|
|
*/
|
|
|
|
var path = require('path'),
|
|
utile = require('utile');
|
|
|
|
var broadway = exports;
|
|
|
|
broadway.App = require('./broadway/app').App;
|
|
broadway.common = require('./broadway/common');
|
|
broadway.features = require('./broadway/features');
|
|
broadway.formats = require('nconf').formats;
|
|
broadway.plugins = utile.requireDirLazy(path.join(__dirname, 'broadway', 'plugins'));
|
|
|