harbor/static/ng/resources/js/log/list-log.controller.js

15 lines
249 B
JavaScript

(function() {
'use strict';
angular
.module('harbor.log')
.controller('ListLogController', ListLogController);
ListLogController.$inject = ['ListLogService']
function ListLogController(ListLogService) {
}
})();