mirror of
https://github.com/go-gitea/gitea
synced 2025-02-19 17:37:04 +01:00
16 lines
307 B
Go
16 lines
307 B
Go
// Copyright 2024 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package swagger
|
|
|
|
import (
|
|
api "code.gitea.io/gitea/modules/structs"
|
|
)
|
|
|
|
// ExploreCode
|
|
// swagger:response ExploreCode
|
|
type swaggerResponseExploreCode struct {
|
|
// in:body
|
|
Body api.ExploreCodeResult `json:"body"`
|
|
}
|