(function () {
    'use strict';

    angular.module('app', [
        'ui.router',
        'app.home'
    ]);

    angular.module('app.home', []);

})();