wormhole-explorer/fly-event-processor/internal/metrics/prometheus.go

11 lines
292 B
Go
Raw Normal View History

2024-04-24 06:56:22 -07:00
package metrics
// PrometheusMetrics is a Prometheus implementation of Metric interface.
type PrometheusMetrics struct {
}
// NewPrometheusMetrics returns a new instance of PrometheusMetrics.
func NewPrometheusMetrics(environment string) *PrometheusMetrics {
return &PrometheusMetrics{}
}