This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeAPI/internal/tasks/health_check_result.go
T

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
}