mirror of
https://github.com/goharbor/harbor
synced 2025-04-30 01:47:34 +00:00
12 lines
219 B
Go
12 lines
219 B
Go
package controllers
|
|
|
|
// SearchController handles request to /search
|
|
type SearchController struct {
|
|
BaseController
|
|
}
|
|
|
|
// Get rendlers search bar
|
|
func (sc *SearchController) Get() {
|
|
sc.Forward("Search", "search.htm")
|
|
}
|