mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2025-06-18 15:15:18 +00:00
13 lines
325 B
Go
13 lines
325 B
Go
// Copyright 2019 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package structs
|
|
|
|
// GitBlob represents a git blob
|
|
type GitBlob struct {
|
|
Content string `json:"content"`
|
|
Encoding string `json:"encoding"`
|
|
URL string `json:"url"`
|
|
SHA string `json:"sha"`
|
|
Size int64 `json:"size"`
|
|
}
|