harbor/static/ng/resources/js/layout/log/log.controller.js
2016-05-02 01:46:50 +08:00

15 lines
228 B
JavaScript

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