Files
ezbookkeeping/pkg/converters/custom/custom_data_parser.go
T
2026-02-23 00:50:01 +08:00

9 lines
270 B
Go

package custom
import "github.com/mayswind/ezbookkeeping/pkg/core"
// CustomTransactionDataParser represents the parser for custom transaction data files
type CustomTransactionDataParser interface {
ParseDataLines(ctx core.Context, data []byte) ([][]string, error)
}