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.
22 lines
412 B
22 lines
412 B
/*
|
|
* app.js: Core Application object for managing plugins and features in broadway
|
|
*
|
|
* (C) 2011, Nodejitsu Inc.
|
|
* MIT LICENSE
|
|
*
|
|
*/
|
|
|
|
var fs = require('fs'),
|
|
path = require('path'),
|
|
util = require('util'),
|
|
broadway = require('broadway');
|
|
|
|
var App = exports.App = function (options) {
|
|
broadway.App.call(this, options);
|
|
};
|
|
|
|
//
|
|
// Inherit from `broadway.App`.
|
|
//
|
|
util.inherits(App, broadway.App);
|