2016-04-13 12:55:05 +02:00
|
|
|
(function() {
|
|
|
|
'use strict';
|
|
|
|
angular
|
|
|
|
.module('harbor.app', [
|
2016-04-18 10:33:30 +02:00
|
|
|
'ngRoute',
|
2016-04-19 11:58:07 +02:00
|
|
|
'harbor.layout.navigation',
|
|
|
|
'harbor.layout.repository',
|
2016-04-21 12:19:51 +02:00
|
|
|
'harbor.layout.project.member',
|
2016-04-19 11:58:07 +02:00
|
|
|
'harbor.layout.user',
|
|
|
|
'harbor.layout.log',
|
2016-04-13 12:55:05 +02:00
|
|
|
'harbor.services.user',
|
2016-04-17 17:53:26 +02:00
|
|
|
'harbor.services.repository',
|
2016-04-21 12:19:51 +02:00
|
|
|
'harbor.services.project.member',
|
2016-04-14 19:50:10 +02:00
|
|
|
'harbor.session',
|
2016-04-13 12:55:05 +02:00
|
|
|
'harbor.header',
|
2016-04-17 17:53:26 +02:00
|
|
|
'harbor.details',
|
|
|
|
'harbor.repository',
|
2016-04-21 12:19:51 +02:00
|
|
|
'harbor.project.member',
|
2016-04-17 17:53:26 +02:00
|
|
|
'harbor.user',
|
|
|
|
'harbor.log'
|
2016-04-14 19:50:10 +02:00
|
|
|
]);
|
2016-04-13 12:55:05 +02:00
|
|
|
})();
|