mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2026-04-15 01:41:56 +00:00
11 lines
236 B
Go
11 lines
236 B
Go
package types
|
|
|
|
type Status struct {
|
|
ID int64 `json:"-"`
|
|
CommitID int64 `json:"-"`
|
|
State string `json:"status"`
|
|
Link string `json:"target_url"`
|
|
Desc string `json:"description"`
|
|
Context string `json:"context"`
|
|
}
|