mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 10:20:29 -06:00
18 lines
382 B
Go
18 lines
382 B
Go
package graphite
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
|
|
"github.com/grafana/grafana-plugin-sdk-go/backend"
|
|
)
|
|
|
|
var (
|
|
_ backend.ConversionHandler = (*Service)(nil)
|
|
)
|
|
|
|
// ConvertObject implements backend.ConversionHandler.
|
|
func (s *Service) ConvertObjects(ctx context.Context, req *backend.ConversionRequest) (*backend.ConversionResponse, error) {
|
|
return nil, fmt.Errorf("not implemented")
|
|
}
|