10 lines
191 B
Go
10 lines
191 B
Go
package web
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
)
|
|
|
|
func (ws *WebServer) setupSearchRoutes(appRouter *mux.Router) {
|
|
appRouter.HandleFunc("/search", ws.appHandler.GlobalSearchHTTPHandler())
|
|
}
|