Files
kontor/kontor-fiber/pkg/handler/health.go
T
2026-01-03 04:07:42 +01:00

10 lines
155 B
Go

package handler
import "github.com/gofiber/fiber/v2"
func GetHealth(c *fiber.Ctx) error {
return c.Status(200).JSON(&fiber.Map{
"status": "ok",
})
}