converge/pkg/models/agent.go

19 lines
272 B
Go

package models
import (
"git.wamblee.org/converge/pkg/comms"
"time"
)
type Agent struct {
Guid string
RemoteAddr string
PublicId string
StartTime time.Time
// TODO add remote address.
EnvironmentInfo comms.EnvironmentInfo
ExpiryTime time.Time
}