mirror of
https://github.com/yanislav-igonin/micrach
synced 2026-07-27 05:14:17 +03:00
All checks were successful
CI / verify (push) Successful in 11m7s
Co-authored-by: Cursor <cursoragent@cursor.com>
10 lines
132 B
Go
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})
|
|
}
|