mirror of
https://github.com/goharbor/harbor.git
synced 2025-02-20 14:01:40 +01:00
15 lines
251 B
JavaScript
15 lines
251 B
JavaScript
|
(function() {
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
angular
|
||
|
.module('harbor.search')
|
||
|
.controller('SearchController', SearchController);
|
||
|
|
||
|
SearchController.$inject = ['SearchService'];
|
||
|
|
||
|
function SearchController(SearchService) {
|
||
|
|
||
|
}
|
||
|
|
||
|
})();
|