mirror of
https://github.com/documize/community.git
synced 2025-07-19 21:29:42 +02:00
Moved from Dep to Go Modules
We have finally dropped go dep and moved over to go mod ! During the move, some dependencies have been bumped.
This commit is contained in:
parent
2c164a135a
commit
b826852137
164 changed files with 18268 additions and 10658 deletions
6
vendor/github.com/google/go-github/github/git_trees.go
generated
vendored
6
vendor/github.com/google/go-github/github/git_trees.go
generated
vendored
|
@ -14,6 +14,12 @@ import (
|
|||
type Tree struct {
|
||||
SHA *string `json:"sha,omitempty"`
|
||||
Entries []TreeEntry `json:"tree,omitempty"`
|
||||
|
||||
// Truncated is true if the number of items in the tree
|
||||
// exceeded GitHub's maximum limit and the Entries were truncated
|
||||
// in the response. Only populated for requests that fetch
|
||||
// trees like Git.GetTree.
|
||||
Truncated *bool `json:"truncated,omitempty"`
|
||||
}
|
||||
|
||||
func (t Tree) String() string {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue