mirror of https://github.com/grafana/grafana.git
12 lines
159 B
Go
12 lines
159 B
Go
|
|
package api
|
||
|
|
|
||
|
|
import (
|
||
|
|
"net/http"
|
||
|
|
|
||
|
|
"github.com/grafana/grafana/pkg/models"
|
||
|
|
)
|
||
|
|
|
||
|
|
func openapi3(c *models.ReqContext) {
|
||
|
|
c.HTML(http.StatusOK, "openapi3", nil)
|
||
|
|
}
|