Files
base/pkg/health/const.go
2026-04-10 18:25:21 +03:30

10 lines
157 B
Go

package health
type Status string
const (
StatusHealthy Status = "healthy"
StatusUnhealthy Status = "unhealthy"
StatusDegraded Status = "degraded"
)