Request object

This commit is contained in:
Eden Kirin
2024-02-06 16:21:00 +01:00
parent 75cded4054
commit 4d9759c093
17 changed files with 194 additions and 1210 deletions

View File

@ -58,14 +58,6 @@ func initRouter(app *fiber.App) {
app.Post("/login", handlers.LoginSubmit)
app.Get("/logout", handlers.Logout)
interactiveGroup := app.Group("/interactive")
{
interactiveGroup.Get("", handlers.Interactive)
interactiveGroup.Get("/swap-content", handlers.InteractiveSwapContent)
interactiveGroup.Get("/filter-cat-breeds", handlers.FilterCatBreeds)
interactiveGroup.Post("/validate-form", handlers.ValidateForm)
}
app.Static("/static", STATIC_PATH)
}