Files
old-ribica/front-ui/app/app.js
Edin Dazdarevic 301e40f976 reorganized stuff
2015-01-25 13:38:25 +01:00

10 lines
212 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;