2019-03-22 21:08:49 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 23:50:29 +05:30
|
|
|
// SPDX-License-Identifier: MIT
|
2019-03-22 21:08:49 +05:30
|
|
|
|
2019-05-11 15:51:34 +05:30
|
|
|
package structs
|
2019-03-22 21:08:49 +05:30
|
|
|
|
|
|
|
// 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"`
|
|
|
|
}
|