mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-19 16:55:16 +01:00
12 lines
212 B
Go
12 lines
212 B
Go
package ng
|
|
|
|
// SearchController handles request to ng/search
|
|
type SearchController struct {
|
|
BaseController
|
|
}
|
|
|
|
// Get rendlers search bar
|
|
func (sc *SearchController) Get() {
|
|
sc.Forward("Search", "search.htm")
|
|
}
|