mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 10:24:54 -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")
|
|
}
|