package models import ( "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 }