mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +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
 | 
						|
}
 |