LiveUsageTracker is the real implementation backed by the billing store.
| 13 | |
| 14 | // LiveUsageTracker is the real implementation backed by the billing store. |
| 15 | type LiveUsageTracker struct { |
| 16 | store *Store |
| 17 | } |
| 18 | |
| 19 | func NewUsageTracker(store *Store) *LiveUsageTracker { |
| 20 | return &LiveUsageTracker{store: store} |
nothing calls this directly
no outgoing calls
no test coverage detected