Files
2026-05-30 22:47:36 +08:00

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")
}