0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-05-06 21:28:23 +02:00
gitea/routers/api/v1/swagger/repo_group.go
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 271b6c7cae
fix build and lint errors
2026-04-02 20:00:54 -04:00

21 lines
401 B
Go

// Copyright 2025 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
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"`
}