mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-03 23:20:26 +08:00
13 lines
224 B
Go
13 lines
224 B
Go
package tasks
|
|
|
|
import "github.com/TeaOSLab/EdgeAPI/internal/db/models"
|
|
|
|
type HealthCheckResult struct {
|
|
Node *models.Node
|
|
NodeAddr string
|
|
NodeAddrId int64
|
|
IsOk bool
|
|
Error string
|
|
CostMs float64
|
|
}
|