| 28 | } |
| 29 | |
| 30 | type ReportingManager struct { |
| 31 | es eventStorage |
| 32 | cs costStorage |
| 33 | ks keyStorage |
| 34 | } |
| 35 | |
| 36 | func NewReportingManager(cs costStorage, ks keyStorage, es eventStorage) *ReportingManager { |
| 37 | return &ReportingManager{ |
nothing calls this directly
no outgoing calls
no test coverage detected