more reorganization

This commit is contained in:
Edin Dazdarevic
2015-01-25 14:04:10 +01:00
parent 301e40f976
commit e3997a1a48
25 changed files with 205 additions and 270 deletions

View File

@@ -0,0 +1,9 @@
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;