-
-
-
-
- package swagger
-
- import (
- api "code.gitea.io/gitea/modules/structs"
- )
-
-
-
- type swaggerResponseOrganization struct {
-
- Body api.Organization `json:"body"`
- }
-
-
-
- type swaggerResponseOrganizationList struct {
-
- Body []api.Organization `json:"body"`
- }
-
-
-
- type swaggerResponseTeam struct {
-
- Body api.Team `json:"body"`
- }
-
-
-
- type swaggerResponseTeamList struct {
-
- Body []api.Team `json:"body"`
- }
|