feat: add global search across beneficiaries and drivers

This commit is contained in:
Arnaud Delcasse
2026-02-26 14:54:22 +01:00
parent bb525f174d
commit b79cc08b06
5 changed files with 103 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package web
import (
"github.com/gorilla/mux"
)
func (ws *WebServer) setupSearchRoutes(appRouter *mux.Router) {
appRouter.HandleFunc("/search", ws.appHandler.GlobalSearchHTTPHandler())
}