mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
11 lines
272 B
Go
11 lines
272 B
Go
package circleci
|
|
|
|
type Build struct {
|
|
AuthorEmail string `json:"author_email"`
|
|
AuthorName string `json:"author_name"`
|
|
Branch string `json:"branch"`
|
|
BuildNum int `json:"build_num"`
|
|
Reponame string `json:"reponame"`
|
|
Status string `json:"status"`
|
|
}
|