diff --git a/server.go b/server.go index b0c2a6d..6c13483 100644 --- a/server.go +++ b/server.go @@ -64,7 +64,7 @@ func Execute() { e.GET("/documentation", handleDocumentation) - e.GET("/nous-contacter", handleNousContacter) + e.GET("/formulaires", handleFormulaires) e.Logger.Fatal(e.Start(":8080")) } @@ -111,8 +111,8 @@ func handleVieEtudianteOrganisme(c echo.Context) error { func handleDocumentation(c echo.Context) error { return c.String(http.StatusOK, "Documentation") } -func handleNousContacter(c echo.Context) error { - return c.String(http.StatusOK, "Nous Contacter") +func handleFormulaires(c echo.Context) error { + return c.String(http.StatusOK, "Formulaires") } // CSS Handlers