This commit is contained in:
Michael Yang
2023-07-06 14:05:55 -07:00
parent 3d6009aae3
commit c4b9e84945
6 changed files with 75 additions and 152 deletions

View File

@@ -23,8 +23,8 @@ type PullRequest struct {
}
type PullProgress struct {
Total int `json:"total"`
Completed int `json:"completed"`
Total int64 `json:"total"`
Completed int64 `json:"completed"`
Percent float64 `json:"percent"`
}