Files
grafana/pkg/api/swagger.go

12 lines
159 B
Go
Raw Normal View History

package api
2022-04-15 14:01:58 +02:00
import (
"net/http"
"github.com/grafana/grafana/pkg/models"
)
func swaggerUI(c *models.ReqContext) {
2022-04-15 14:01:58 +02:00
c.HTML(http.StatusOK, "swagger", nil)
}