harbor/static/ng/resources/js/search/search.controller.js

15 lines
251 B
JavaScript

(function() {
'use strict';
angular
.module('harbor.search')
.controller('SearchController', SearchController);
SearchController.$inject = ['SearchService'];
function SearchController(SearchService) {
}
})();