0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-01 22:34:59 +02:00
gitea/routers/api/v1/swagger/repo_group.go
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 52d17c410a
add appropriate swagger definitions
2026-04-02 20:00:53 -04:00

18 lines
310 B
Go

package swagger
import api "code.gitea.io/gitea/modules/structs"
// Group
// swagger:response Group
type swaggerResponseGroup struct {
// in:body
Body api.Group `json:"body"`
}
// GroupList
// swagger:response GroupList
type swaggerResponseGroupList struct {
// in:body
Body []api.Group `json:"body"`
}