10 lines
142 B
Go

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