mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-28 21:25:55 +01:00
15 lines
253 B
JavaScript
15 lines
253 B
JavaScript
(function() {
|
|
|
|
'use strict';
|
|
|
|
angular
|
|
.module('harbor.layout.header')
|
|
.controller('HeaderController', HeaderController);
|
|
|
|
HeaderController.$inject = ['$scope'];
|
|
|
|
function HeaderController($scope) {
|
|
var vm = this;
|
|
}
|
|
|
|
})(); |