mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 19:06:18 +01:00 
			
		
		
		
	Upgrade golang to 1.25.1 and add descriptions for the swagger structs' fields (#35418)
This commit is contained in:
		| @@ -5,12 +5,19 @@ package structs | ||||
|  | ||||
| // GitBlobResponse represents a git blob | ||||
| type GitBlobResponse struct { | ||||
| 	Content  *string `json:"content"` | ||||
| 	// The content of the git blob (may be base64 encoded) | ||||
| 	Content *string `json:"content"` | ||||
| 	// The encoding used for the content (e.g., "base64") | ||||
| 	Encoding *string `json:"encoding"` | ||||
| 	URL      string  `json:"url"` | ||||
| 	SHA      string  `json:"sha"` | ||||
| 	Size     int64   `json:"size"` | ||||
| 	// The URL to access this git blob | ||||
| 	URL string `json:"url"` | ||||
| 	// The SHA hash of the git blob | ||||
| 	SHA string `json:"sha"` | ||||
| 	// The size of the git blob in bytes | ||||
| 	Size int64 `json:"size"` | ||||
|  | ||||
| 	LfsOid  *string `json:"lfs_oid,omitempty"` | ||||
| 	LfsSize *int64  `json:"lfs_size,omitempty"` | ||||
| 	// The LFS object ID if this blob is stored in LFS | ||||
| 	LfsOid *string `json:"lfs_oid,omitempty"` | ||||
| 	// The size of the LFS object if this blob is stored in LFS | ||||
| 	LfsSize *int64 `json:"lfs_size,omitempty"` | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user