mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-04 16:00:24 +08:00
12 lines
196 B
Go
12 lines
196 B
Go
|
|
package tasks
|
||
|
|
|
||
|
|
import "github.com/TeaOSLab/EdgeAPI/internal/db/models"
|
||
|
|
|
||
|
|
type HealthCheckResult struct {
|
||
|
|
Node *models.Node
|
||
|
|
NodeAddr string
|
||
|
|
IsOk bool
|
||
|
|
Error string
|
||
|
|
CostMs float64
|
||
|
|
}
|