refactor(health): remove incorrect field comment

This commit is contained in:
yusing
2026-02-15 14:33:43 +08:00
parent 6fcd570be6
commit d619562f00

View File

@@ -77,8 +77,8 @@ type (
HealthInfoWithoutDetail struct {
Status HealthStatus `json:"status" swaggertype:"string" enums:"healthy,unhealthy,napping,starting,error,unknown"`
Uptime time.Duration `json:"uptime" swaggertype:"number"` // uptime in milliseconds
Latency time.Duration `json:"latency" swaggertype:"number"` // latency in microseconds
Uptime time.Duration `json:"uptime" swaggertype:"number"`
Latency time.Duration `json:"latency" swaggertype:"number"`
} // @name HealthInfoWithoutDetail
HealthInfo struct {