Ajouter routes exemples selon figma #25
1 changed files with 3 additions and 3 deletions
|
@ -64,7 +64,7 @@ func Execute() {
|
||||||
|
|
||||||
e.GET("/documentation", handleDocumentation)
|
e.GET("/documentation", handleDocumentation)
|
||||||
|
|
||||||
e.GET("/nous-contacter", handleNousContacter)
|
e.GET("/formulaires", handleFormulaires)
|
||||||
|
|
||||||
e.Logger.Fatal(e.Start(":8080"))
|
e.Logger.Fatal(e.Start(":8080"))
|
||||||
}
|
}
|
||||||
|
@ -111,8 +111,8 @@ func handleVieEtudianteOrganisme(c echo.Context) error {
|
||||||
func handleDocumentation(c echo.Context) error {
|
func handleDocumentation(c echo.Context) error {
|
||||||
return c.String(http.StatusOK, "Documentation")
|
return c.String(http.StatusOK, "Documentation")
|
||||||
}
|
}
|
||||||
func handleNousContacter(c echo.Context) error {
|
func handleFormulaires(c echo.Context) error {
|
||||||
return c.String(http.StatusOK, "Nous Contacter")
|
return c.String(http.StatusOK, "Formulaires")
|
||||||
}
|
}
|
||||||
|
|
||||||
// CSS Handlers
|
// CSS Handlers
|
||||||
|
|
Loading…
Reference in a new issue