grafana/pkg/api/swagger.go

12 lines
201 B
Go
Raw Normal View History

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