From ecce28f9dfaaa78a8471053ca40716a1e426aa6f Mon Sep 17 00:00:00 2001 From: Richard Mahn Date: Fri, 22 Mar 2019 09:38:49 -0600 Subject: Updates SDK dep (#6406) --- vendor/code.gitea.io/sdk/gitea/git_blob.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 vendor/code.gitea.io/sdk/gitea/git_blob.go (limited to 'vendor/code.gitea.io/sdk/gitea/git_blob.go') diff --git a/vendor/code.gitea.io/sdk/gitea/git_blob.go b/vendor/code.gitea.io/sdk/gitea/git_blob.go new file mode 100644 index 0000000000..abdd95aaff --- /dev/null +++ b/vendor/code.gitea.io/sdk/gitea/git_blob.go @@ -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"` +} -- cgit v1.2.3