mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-08 11:41:54 +01:00
19 lines
425 B
JavaScript
19 lines
425 B
JavaScript
(function() {
|
|
'use strict';
|
|
angular
|
|
.module('harbor.app', [
|
|
'ngRoute',
|
|
'harbor.layout.navigation',
|
|
'harbor.layout.repository',
|
|
'harbor.layout.user',
|
|
'harbor.layout.log',
|
|
'harbor.services.user',
|
|
'harbor.services.repository',
|
|
'harbor.session',
|
|
'harbor.header',
|
|
'harbor.details',
|
|
'harbor.repository',
|
|
'harbor.user',
|
|
'harbor.log'
|
|
]);
|
|
})(); |