0
0
mirror of https://github.com/go-gitea/gitea.git synced 2026-06-04 05:31:19 +02:00
gitea/routers/web/misc/swagger.go

15 lines
250 B
Go

// Copyright 2017 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package misc
import (
"net/http"
"gitea.dev/services/context"
)
func Swagger(ctx *context.Context) {
ctx.HTML(http.StatusOK, "swagger/openapi-viewer")
}