mirror of
https://github.com/go-gitea/gitea.git
synced 2026-05-01 22:34:59 +02:00
18 lines
310 B
Go
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"`
|
|
}
|