mirror of
https://github.com/drone/drone-cli.git
synced 2024-11-23 09:21:56 +01:00
12 lines
277 B
Go
12 lines
277 B
Go
package common
|
|
|
|
// Build represents a build
|
|
type Build struct {
|
|
Status string `json:"status"`
|
|
ExitCode int `json:"exit_code"`
|
|
Started int64 `json:"started_at"`
|
|
Finished int64 `json:"finished_at"`
|
|
Duration int64 `json:"duration"`
|
|
Label string `json:"label"`
|
|
}
|