micrach/gateway/controllers.go
Yanislav Igonin 642c1878cc
All checks were successful
CI / verify (push) Successful in 11m7s
feat: register with gateway via board token upsert
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-22 14:08:38 +04:00

10 lines
132 B
Go

package gateway
import (
"github.com/gofiber/fiber/v2"
)
func Ping(c *fiber.Ctx) error {
return c.JSON(fiber.Map{"ok": true})
}