-
-
-
-
- package swagger
-
- import (
- "code.gitea.io/gitea/models"
- api "code.gitea.io/gitea/modules/structs"
- )
-
-
-
- type swaggerResponseUser struct {
-
- Body api.User `json:"body"`
- }
-
-
-
- type swaggerResponseUserList struct {
-
- Body []api.User `json:"body"`
- }
-
-
-
- type swaggerResponseEmailList struct {
-
- Body []api.Email `json:"body"`
- }
-
-
- type swaggerModelEditUserOption struct {
-
- Options api.EditUserOption
- }
-
-
-
- type swaggerResponseUserHeatmapData struct {
-
- Body []models.UserHeatmapData `json:"body"`
- }
|