mirror of
https://github.com/grafana/grafana.git
synced 2025-01-16 11:42:35 -06:00
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)
|
||
|
}
|