2020-04-05 00:20:50 -06:00
|
|
|
// Copyright 2020 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2020-04-05 00:20:50 -06:00
|
|
|
|
2021-06-08 17:33:54 -06:00
|
|
|
package web
|
2018-07-27 18:19:01 -06:00
|
|
|
|
|
|
|
import (
|
2024-02-27 00:12:22 -07:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2018-07-27 18:19:01 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
// SwaggerV1Json render swagger v1 json
|
|
|
|
func SwaggerV1Json(ctx *context.Context) {
|
2024-02-18 02:52:02 -07:00
|
|
|
ctx.JSONTemplate("swagger/v1_json")
|
2018-07-27 18:19:01 -06:00
|
|
|
}
|