mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-28 21:25:55 +01:00
21 lines
317 B
JavaScript
21 lines
317 B
JavaScript
|
(function() {
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
angular
|
||
|
.module('harbor.services.search')
|
||
|
.factory('SearchService', SearchService);
|
||
|
|
||
|
SearchService.$inject = ['$http', '$log'];
|
||
|
|
||
|
function SearchService($http, $log) {
|
||
|
|
||
|
return Search;
|
||
|
|
||
|
function Search(queryParams) {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
})();
|