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