1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2025-02-10 18:31:20 +02:00
woodpecker/common/agent.go
2015-04-29 15:26:22 -07:00

10 lines
180 B
Go

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
}