mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
12 lines
159 B
Go
12 lines
159 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/grafana/grafana/pkg/models"
|
|
)
|
|
|
|
func swaggerUI(c *models.ReqContext) {
|
|
c.HTML(http.StatusOK, "swagger", nil)
|
|
}
|