Files
EdgeAPI/internal/tasks/health_check_result.go

13 lines
224 B
Go
Raw Normal View History

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
}