Versions in this module Expand all Collapse all v1 v1.5.0 Mar 28, 2026 Changes in this version + type CSVConfig struct + Delimiter rune + HasHeader bool + Path string + type CSVReader struct + func NewCSVReader(cfg CSVConfig) *CSVReader + func (r *CSVReader) Read(ctx context.Context) ([]Record, error) + type Reader interface + Read func(ctx context.Context) ([]Record, error) + type Record struct + RowNumber int + Values map[string]string + type XLSXConfig struct + HasHeader bool + Path string + Sheet string + type XLSXReader struct + func NewXLSXReader(cfg XLSXConfig) *XLSXReader + func (r *XLSXReader) Read(ctx context.Context) ([]Record, error)