2022-02-08 14:38:43 +02:00
|
|
|
package api
|
|
|
|
|
|
2022-04-15 14:01:58 +02:00
|
|
|
import (
|
|
|
|
|
"net/http"
|
|
|
|
|
|
2023-01-27 08:50:36 +01:00
|
|
|
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
|
2022-04-15 14:01:58 +02:00
|
|
|
)
|
2022-02-08 14:38:43 +02:00
|
|
|
|
2023-01-27 08:50:36 +01:00
|
|
|
func swaggerUI(c *contextmodel.ReqContext) {
|
2022-04-15 14:01:58 +02:00
|
|
|
c.HTML(http.StatusOK, "swagger", nil)
|
2022-02-08 14:38:43 +02:00
|
|
|
}
|