Finish migration

This commit is contained in:
Eden Kirin
2024-02-01 22:05:44 +01:00
parent 15ba332ae5
commit 89a3c63dd8
5 changed files with 27 additions and 273 deletions

View File

@ -53,13 +53,13 @@ func initRouter(app *fiber.App) {
app.Get("/", handlers.Home)
app.Get("/about", handlers.About)
// interactiveRouter := router.Group("/interactive")
// {
// interactiveRouter.GET("", handlers.Interactive)
// interactiveRouter.GET("/swap-content", handlers.InteractiveSwapContent)
// interactiveRouter.GET("/filter-cat-breeds", handlers.FilterCatBreeds)
// interactiveRouter.POST("/validate-form", handlers.ValidateForm)
// }
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)
}