feat: update fiber version from 2 to 3 and add health checks

This commit is contained in:
2025-03-25 11:47:47 +01:00
parent d7a6391a08
commit a2b1abf52c
6 changed files with 65 additions and 18 deletions

View File

@@ -1,9 +1,9 @@
package controller
import (
"github.com/gofiber/fiber/v2"
"github.com/gofiber/fiber/v3"
)
func SearchQuery(c *fiber.Ctx) error {
func SearchQuery(c fiber.Ctx) error {
return c.SendString("Hello, World!")
}