mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
17 lines
309 B
Java
17 lines
309 B
Java
package com.commafeed;
|
|
|
|
import com.codahale.metrics.MetricRegistry;
|
|
|
|
import jakarta.enterprise.inject.Produces;
|
|
import jakarta.inject.Singleton;
|
|
|
|
@Singleton
|
|
public class CommaFeedProducers {
|
|
|
|
@Produces
|
|
@Singleton
|
|
public MetricRegistry metricRegistry() {
|
|
return new MetricRegistry();
|
|
}
|
|
}
|