File size: 302 Bytes
d3c13b7
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
package exporter

import "context"

type ExporterService interface {
	ExporterMetricsService(ctx context.Context) (string, error)
	// ExporterVersionInfoService(ctx context.Context) (string, error)
	// ExporterHealthCheckService(ctx context.Context) (string, error)
}

type ExporterServiceImpl struct{}