mirror of
https://github.com/goharbor/harbor.git
synced 2024-12-03 15:43:39 +01:00
13 lines
179 B
JavaScript
13 lines
179 B
JavaScript
|
(function() {
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
angular
|
||
|
.module('harbor.layout.log')
|
||
|
.controller('LogController', LogController);
|
||
|
|
||
|
function LogController() {
|
||
|
|
||
|
}
|
||
|
|
||
|
})();
|