Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame contribute delete
228 Bytes
package swogrp
import (
"time"
"github.com/google/uuid"
)
// Node represents a single node in the switchover group.
type Node struct {
ID uuid.UUID
CanExec bool
OldID uuid.UUID
NewID uuid.UUID
StartedAt time.Time
}