feat: API GET /repos/{owner}/{repo}/git/blobs

This commit is contained in:
oliverpool 2025-06-13 11:36:57 +02:00
parent 07e8684a61
commit a4ea74020f
6 changed files with 167 additions and 7 deletions

View file

@ -238,6 +238,13 @@ type swaggerGitBlob struct {
Body api.GitBlob `json:"body"`
}
// GitBlobList
// swagger:response GitBlobList
type swaggerGitBlobList struct {
// in: body
Body []api.GitBlob `json:"body"`
}
// Commit
// swagger:response Commit
type swaggerCommit struct {