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