mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-02-04 18:21:06 +02: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"`
|
|
}
|