display pull progress

This commit is contained in:
Bruce MacDonald
2023-07-06 14:18:40 -04:00
committed by Jeffrey Morgan
parent 580fe8951c
commit 7cf5905063
7 changed files with 81 additions and 19 deletions

View File

@@ -22,6 +22,12 @@ type PullRequest struct {
Model string `json:"model"`
}
type PullProgress struct {
Total int `json:"total"`
Completed int `json:"completed"`
Percent float64 `json:"percent"`
}
type PullResponse struct {
Response string `json:"response"`
}