Added search example.
This commit is contained in:
parent
0239f46247
commit
6d62a19493
8 changed files with 95 additions and 14 deletions
|
|
@ -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"
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue