mirror of https://github.com/grafana/grafana.git
				
				
				
			
		
			
	
	
		
			17 lines
		
	
	
		
			326 B
		
	
	
	
		
			Go
		
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			326 B
		
	
	
	
		
			Go
		
	
	
	
|  | package promlib | ||
|  | 
 | ||
|  | import ( | ||
|  | 	"context" | ||
|  | 	"fmt" | ||
|  | 
 | ||
|  | 	"github.com/grafana/grafana-plugin-sdk-go/backend" | ||
|  | ) | ||
|  | 
 | ||
|  | var ( | ||
|  | 	_ backend.ConversionHandler = (*Service)(nil) | ||
|  | ) | ||
|  | 
 | ||
|  | func (s *Service) ConvertObjects(ctx context.Context, req *backend.ConversionRequest) (*backend.ConversionResponse, error) { | ||
|  | 	return nil, fmt.Errorf("not implemented") | ||
|  | } |