You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

git_blob.go 341B

12345678910111213
  1. // Copyright 2019 The Gitea Authors. All rights reserved.
  2. // SPDX-License-Identifier: MIT
  3. package structs
  4. // GitBlobResponse represents a git blob
  5. type GitBlobResponse struct {
  6. Content string `json:"content"`
  7. Encoding string `json:"encoding"`
  8. URL string `json:"url"`
  9. SHA string `json:"sha"`
  10. Size int64 `json:"size"`
  11. }