2014-12-29 20:36:08 +08:00
|
|
|
package api
|
|
|
|
|
2021-03-18 01:10:40 +08:00
|
|
|
import "github.com/grafana/grafana/pkg/models"
|
2020-04-22 16:30:06 +08:00
|
|
|
|
2020-03-04 19:57:20 +08:00
|
|
|
func (hs *HTTPServer) ProxyDataSourceRequest(c *models.ReqContext) {
|
2021-03-18 01:10:40 +08:00
|
|
|
hs.DataProxy.ProxyDataSourceRequest(c)
|
2016-08-17 13:33:59 +08:00
|
|
|
}
|
2022-04-14 18:28:13 +08:00
|
|
|
|
|
|
|
func (hs *HTTPServer) ProxyDataSourceRequestWithUID(c *models.ReqContext) {
|
2022-04-29 15:25:22 +08:00
|
|
|
hs.DataProxy.ProxyDatasourceRequestWithUID(c, "")
|
2022-04-14 18:28:13 +08:00
|
|
|
}
|