Added search example.

This commit is contained in:
mikestefanello 2021-12-27 12:54:27 -05:00
parent 0239f46247
commit 6d62a19493
8 changed files with 95 additions and 14 deletions

View file

@ -68,6 +68,9 @@ func navRoutes(c *services.Container, g *echo.Group, ctr controller.Controller)
home := Home{Controller: ctr}
g.GET("/", home.Get).Name = "home"
search := Search{Controller: ctr}
g.GET("/search", search.Get).Name = "search"
about := About{Controller: ctr}
g.GET("/about", about.Get).Name = "about"