feat: Update internal HTTP server to use Fiber v2 with new routes and middleware configuration

This commit is contained in:
2025-03-25 09:51:54 +01:00
parent d51ced2c6a
commit 272f5cabcf
6 changed files with 94 additions and 0 deletions

View File

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