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