2024-07-14 16:50:32 +03:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package swagger
|
|
|
|
|
|
|
|
import (
|
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Project
|
|
|
|
// swagger:response Project
|
|
|
|
type swaggerResponseProject struct {
|
|
|
|
// in:body
|
|
|
|
Body api.Project `json:"body"`
|
|
|
|
}
|
2024-07-15 13:33:26 +03:00
|
|
|
|
|
|
|
// ProjectList
|
|
|
|
// swagger:response ProjectList
|
|
|
|
type swaggerResponseProjectList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.Project `json:"body"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Column
|
|
|
|
// swagger:response Column
|
|
|
|
type swaggerResponseColumn struct {
|
|
|
|
// in:body
|
|
|
|
Body api.Column `json:"body"`
|
|
|
|
}
|
2024-07-31 14:13:21 +03:00
|
|
|
|
|
|
|
// ColumnList
|
|
|
|
// swagger:response ColumnList
|
|
|
|
type swaggerResponseColumnList struct {
|
|
|
|
// in:body
|
|
|
|
Body []api.Column `json:"body"`
|
|
|
|
}
|