mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-04-15 01:41:56 +00:00
10 lines
229 B
Go
10 lines
229 B
Go
package types
|
|
|
|
// 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"`
|
|
}
|