10 lines
200 B
JavaScript
10 lines
200 B
JavaScript
var App = function() {
|
|
this.bootstrap = function() {
|
|
// here goes all app initialization and bootstraping logic
|
|
// nothing at the moment
|
|
};
|
|
};
|
|
|
|
var app = new App();
|
|
module.exports = app;
|