mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
12 lines
298 B
Go
12 lines
298 B
Go
package api
|
|
|
|
import "github.com/grafana/grafana/pkg/models"
|
|
|
|
func (hs *HTTPServer) ProxyDataSourceRequest(c *models.ReqContext) {
|
|
hs.DataProxy.ProxyDataSourceRequest(c)
|
|
}
|
|
|
|
func (hs *HTTPServer) ProxyDataSourceRequestWithUID(c *models.ReqContext) {
|
|
hs.DataProxy.ProxyDatasourceRequestWithUID(c)
|
|
}
|