mirror of
https://github.com/grafana/grafana.git
synced 2024-11-23 09:26:43 -06:00
6c5a573772
* Chore: Move ReqContext to contexthandler service * Rename package to contextmodel * Generate ngalert files * Remove unused imports
12 lines
201 B
Go
12 lines
201 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
contextmodel "github.com/grafana/grafana/pkg/services/contexthandler/model"
|
|
)
|
|
|
|
func openapi3(c *contextmodel.ReqContext) {
|
|
c.HTML(http.StatusOK, "openapi3", nil)
|
|
}
|