15 lines
290 B
Go
15 lines
290 B
Go
// Copyright 2025 Milovann Yanatchkov
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
package swagger
|
|
|
|
import (
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
)
|
|
|
|
// Foundation
|
|
// swagger:response Foundation
|
|
type swaggerResponseFoundation struct {
|
|
// in:body
|
|
Body api.Foundation `json:"body"`
|
|
}
|