Updates GitTreeResponse for pagination (#141)
* Updates GitTreeResponse for pagination * Removes TotalPages
This commit is contained in:
Родитель
d5a42771e7
Коммит
b9e72373fb
|
@ -20,10 +20,12 @@ type GitEntry struct {
|
|||
|
||||
// GitTreeResponse returns a git tree
|
||||
type GitTreeResponse struct {
|
||||
SHA string `json:"sha"`
|
||||
URL string `json:"url"`
|
||||
Entries []GitEntry `json:"tree"`
|
||||
Truncated bool `json:"truncated"`
|
||||
SHA string `json:"sha"`
|
||||
URL string `json:"url"`
|
||||
Entries []GitEntry `json:"tree"`
|
||||
Truncated bool `json:"truncated"`
|
||||
Page int `json:"page"`
|
||||
TotalCount int `json:"total_count"`
|
||||
}
|
||||
|
||||
// GetTrees downloads a file of repository, ref can be branch/tag/commit.
|
||||
|
|
Загрузка…
Ссылка в новой задаче