1
1
mirror of https://github.com/go-gitea/gitea synced 2025-09-28 03:28:13 +00:00

Updates SDK dep (#6406)

This commit is contained in:
Richard Mahn
2019-03-22 09:38:49 -06:00
committed by techknowlogick
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
View 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"`
}