forked from forgejo/forgejo
Updates SDK dep (#6406)
This commit is contained in:
parent
03e4db40cc
commit
ecce28f9df
6 changed files with 111 additions and 11 deletions
14
vendor/code.gitea.io/sdk/gitea/git_blob.go
generated
vendored
Normal file
14
vendor/code.gitea.io/sdk/gitea/git_blob.go
generated
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
// Copyright 2019 The Gitea Authors. All rights reserved.
|
||||
// Use of this source code is governed by a MIT-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package gitea
|
||||
|
||||
// GitBlobResponse represents a git blob
|
||||
type GitBlobResponse struct {
|
||||
Content string `json:"content"`
|
||||
Encoding string `json:"encoding"`
|
||||
URL string `json:"url"`
|
||||
SHA string `json:"sha"`
|
||||
Size int64 `json:"size"`
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue