harness-drone/common/agent.go

10 lines
180 B
Go
Raw Normal View History

2015-04-29 22:26:22 +00:00
package common
// Agent represents a worker that has connected
// to the system in order to perform work
type Agent struct {
Name string
Addr string
IsHealthy bool
}