mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-07 13:44:24 +00:00
11 lines
385 B
Go
11 lines
385 B
Go
package model
|
|
|
|
type NodeState struct {
|
|
NodeID string `json:"nodeId" gorm:"primaryKey"`
|
|
NodeRole string `json:"nodeRole" gorm:"not null"`
|
|
LastSyncAt int64 `json:"lastSyncAt"`
|
|
LastHeartbeatAt int64 `json:"lastHeartbeatAt"`
|
|
LastSeenVersion int64 `json:"lastSeenVersion"`
|
|
LastError string `json:"lastError"`
|
|
UpdatedAt int64 `json:"updatedAt"`
|
|
}
|