2019-03-22 16:38:49 +01:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-03-22 16:38:49 +01:00
|
|
|
|
2019-05-11 12:21:34 +02:00
|
|
|
package structs
|
2019-03-22 16:38:49 +01:00
|
|
|
|
|
|
|
// 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"`
|
|
|
|
}
|