mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01: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")
|
|
}
|