-
-
-
-
- package swagger
-
- import (
- api "code.gitea.io/gitea/modules/structs"
- )
-
-
-
- type swaggerResponseRepository struct {
-
- Body api.Repository `json:"body"`
- }
-
-
-
- type swaggerResponseRepositoryList struct {
-
- Body []api.Repository `json:"body"`
- }
-
-
-
- type swaggerResponseBranch struct {
-
- Body api.Branch `json:"body"`
- }
-
-
-
- type swaggerResponseBranchList struct {
-
- Body []api.Branch `json:"body"`
- }
-
-
-
- type swaggerResponseTagList struct {
-
- Body []api.Tag `json:"body"`
- }
-
-
-
- type swaggerResponseTag struct {
-
- Body api.Tag `json:"body"`
- }
-
-
-
- type swaggerResponseAnnotatedTag struct {
-
- Body api.AnnotatedTag `json:"body"`
- }
-
-
-
- type swaggerResponseReference struct {
-
- Body api.Reference `json:"body"`
- }
-
-
-
- type swaggerResponseReferenceList struct {
-
- Body []api.Reference `json:"body"`
- }
-
-
-
- type swaggerResponseHook struct {
-
- Body api.Hook `json:"body"`
- }
-
-
-
- type swaggerResponseHookList struct {
-
- Body []api.Hook `json:"body"`
- }
-
-
-
- type swaggerResponseGitHook struct {
-
- Body api.GitHook `json:"body"`
- }
-
-
-
- type swaggerResponseGitHookList struct {
-
- Body []api.GitHook `json:"body"`
- }
-
-
-
- type swaggerResponseRelease struct {
-
- Body api.Release `json:"body"`
- }
-
-
-
- type swaggerResponseReleaseList struct {
-
- Body []api.Release `json:"body"`
- }
-
-
-
- type swaggerResponsePullRequest struct {
-
- Body api.PullRequest `json:"body"`
- }
-
-
-
- type swaggerResponsePullRequestList struct {
-
- Body []api.PullRequest `json:"body"`
- }
-
-
-
- type swaggerResponseStatus struct {
-
- Body api.Status `json:"body"`
- }
-
-
-
- type swaggerResponseStatusList struct {
-
- Body []api.Status `json:"body"`
- }
-
-
-
- type swaggerResponseWatchInfo struct {
-
- Body api.WatchInfo `json:"body"`
- }
-
-
-
- type swaggerResponseSearchResults struct {
-
- Body api.SearchResults `json:"body"`
- }
-
-
-
- type swaggerResponseAttachmentList struct {
-
- Body []api.Attachment `json:"body"`
- }
-
-
-
- type swaggerResponseAttachment struct {
-
- Body api.Attachment `json:"body"`
- }
-
-
-
- type swaggerGitTreeResponse struct {
-
- Body api.GitTreeResponse `json:"body"`
- }
-
-
-
- type swaggerGitBlobResponse struct {
-
- Body api.GitBlobResponse `json:"body"`
- }
-
-
-
- type swaggerCommit struct {
-
- Body api.Commit `json:"body"`
- }
-
-
-
- type swaggerCommitList struct {
-
- Page int `json:"X-Page"`
-
-
- PerPage int `json:"X-PerPage"`
-
-
- Total int `json:"X-Total"`
-
-
- PageCount int `json:"X-PageCount"`
-
-
- HasMore bool `json:"X-HasMore"`
-
-
- Body []api.Commit `json:"body"`
- }
-
-
-
- type swaggerEmptyRepository struct {
-
- Body api.APIError `json:"body"`
- }
-
-
-
- type swaggerFileResponse struct {
-
- Body api.FileResponse `json:"body"`
- }
-
-
-
- type swaggerContentsResponse struct {
-
- Body api.ContentsResponse `json:"body"`
- }
-
-
-
- type swaggerContentsListResponse struct {
-
- Body []api.ContentsResponse `json:"body"`
- }
-
-
-
- type swaggerFileDeleteResponse struct {
-
- Body api.FileDeleteResponse `json:"body"`
- }
-
-
-
- type swaggerTopicListResponse struct {
-
- Body []api.TopicResponse `json:"body"`
- }
-
-
-
- type swaggerTopicNames struct {
-
- Body api.TopicName `json:"body"`
- }
|