Files
kontor/kontor-api-go/pkg/handler/health.go
T
2025-12-01 05:25:54 +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",
})
}