mirror of https://github.com/grafana/grafana.git
8 lines
131 B
Go
8 lines
131 B
Go
|
package api
|
||
|
|
||
|
import "github.com/grafana/grafana/pkg/models"
|
||
|
|
||
|
func swaggerUI(c *models.ReqContext) {
|
||
|
c.HTML(200, "swagger", nil)
|
||
|
}
|