add Fees and Taxes to the Record type

This commit is contained in:
2025-11-13 11:27:52 +00:00
parent 388fd439a1
commit bb93798c0f
6 changed files with 166 additions and 8 deletions

View File

@@ -9,11 +9,6 @@ import (
"sync"
)
type RecordReader interface {
// ReadRecord should return Records until an error is found.
ReadRecord() (Record, error)
}
// Reporter consumes each record to produce ReportItem.
type Reporter struct {
reader RecordReader