mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +00:00
9 lines
230 B
Go
9 lines
230 B
Go
package common
|
|
|
|
// Agent represents a worker that has connected
|
|
// to the system in order to perform work
|
|
type Agent struct {
|
|
Name string `json:"name"`
|
|
Addr string `json:"addr"`
|
|
IsHealthy bool `json:"is_healthy"`
|
|
}
|