grafana/pkg/api/swagger.go

12 lines
159 B
Go
Raw Normal View History

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