harbor/static/ng/resources/js/harbor.module.js

22 lines
534 B
JavaScript
Raw Normal View History

(function() {
'use strict';
angular
.module('harbor.app', [
2016-04-18 10:33:30 +02:00
'ngRoute',
'harbor.layout.navigation',
'harbor.layout.repository',
'harbor.layout.project.member',
'harbor.layout.user',
'harbor.layout.log',
'harbor.services.user',
'harbor.services.repository',
'harbor.services.project.member',
2016-04-14 19:50:10 +02:00
'harbor.session',
'harbor.header',
'harbor.details',
'harbor.repository',
'harbor.project.member',
'harbor.user',
'harbor.log'
2016-04-14 19:50:10 +02:00
]);
})();