Files
old-ribica/front-ui/app/app.js

10 lines
212 B
JavaScript
Raw Normal View History

2015-01-22 06:38:48 +01:00
var App = function() {
this.bootstrap = function() {
// here goes all app initialization and bootstraping logic
2015-01-25 13:38:25 +01:00
// nothing at the moment
2015-01-22 06:38:48 +01:00
};
};
var app = new App();
module.exports = app;