import { Metrics } from '../type';

const metrics: Metrics = {
  gauges() {
    // no impl
  },
  counter() {
    // no impl
  },
  timer() {
    // no impl
  },
};

export { metrics };
