mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-29 05:35:43 +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) {
|
|
|
|
}
|
|
|
|
})(); |