10 lines
141 B
Go

package controller
import (
"github.com/gofiber/fiber/v3"
)
func SearchQuery(c fiber.Ctx) error {
return c.SendString("Hello, World!")
}