13 lines
255 B
JavaScript
13 lines
255 B
JavaScript
|
|
var App = function() {
|
|
this.bootstrap = function() {
|
|
// here goes all app initialization and bootstraping logic
|
|
//this.router = new Router();
|
|
//Backbone.history.start();
|
|
};
|
|
};
|
|
|
|
|
|
var app = new App();
|
|
module.exports = app;
|