code.gitea.io/gitea@v1.19.3/modules/structs/git_blob.go (about)

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