harbor/controllers/search.go

12 lines
230 B
Go
Raw Normal View History

2016-02-01 11:59:10 +00:00
package controllers
2016-02-26 10:35:55 +00:00
// SearchController handles request to /search
2016-02-01 11:59:10 +00:00
type SearchController struct {
BaseController
}
// Get rendlers search bar
2016-02-01 11:59:10 +00:00
func (sc *SearchController) Get() {
2016-06-28 15:42:05 +00:00
sc.Forward("page_title_search", "search.htm")
2016-02-01 11:59:10 +00:00
}