Files
any2anexoj/internal/report.go
Natercio Moniz 7450c0d571
All checks were successful
Tests / tests (pull_request) Successful in 17s
fix unused imports
2025-11-13 13:47:41 +00:00

12 lines
237 B
Go

package internal
type RecordReader interface {
// ReadRecord should return Records until an error is found.
ReadRecord() (Record, error)
}
type ReportWriter interface {
// ReportWriter writes report items
Write(ReportItem) error
}