Skip to content

Commit

Permalink
refactor(index.js): Add base classes of Transport and Metric to export
Browse files Browse the repository at this point in the history
  • Loading branch information
Goodluckhf committed Oct 23, 2018
1 parent dce348e commit 450375f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
import UMetrics from './UMetrics';
import Transport from './transport/Transport';
import PullTransport from './transport/PullTransport';
import PushTransport from './transport/PushTransport';
import Metric from './metric/Metric';
import GaugeMetric from './metric/GaugeMetric';

export {
UMetrics,
Transport,
PushTransport,
PullTransport,
GaugeMetric,
Metric,
};

0 comments on commit 450375f

Please sign in to comment.