Files
old-ribica/front-ui/app/externalApi.js
2015-01-25 14:04:10 +01:00

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;