feat: Added new search route and metric endpoint to internal controller

This commit is contained in:
2025-03-25 09:58:49 +01:00
parent 272f5cabcf
commit d7a6391a08
2 changed files with 16 additions and 0 deletions

View File

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