UNPKG

528 BJavaScriptView Raw
1/*
2 * Copyright (c) 2011-2013, Yahoo! Inc. All rights reserved.
3 * Copyrights licensed under the New BSD License.
4 * See the accompanying LICENSE file for terms.
5 */
6
7/*jslint nomen:true*/
8
9/*
10 * By convention many node.js applications use an index.js file so we support
11 * that convention. Our goal is to redirect the require() to the proper location
12 * of the Mojito app/server baseline and to ensure whatever they export is
13 * exported to our callers.
14 */
15process.chdir(__dirname);
16
17module.exports = require('./mojito.js');