converge/pkg/models/agent.go

16 lines
204 B
Go

package models
import (
"converge/pkg/comms"
"time"
)
type Agent struct {
Guid string
PublicId string
StartTime time.Time
EnvironmentInfo comms.EnvironmentInfo
ExpiryTime time.Time
}