2019-03-22 09:38:49 -06:00
|
|
|
// 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.
|
|
|
|
|
2019-05-11 04:21:34 -06:00
|
|
|
package structs
|
2019-03-22 09:38:49 -06: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"`
|
|
|
|
}
|