mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 23:17:33 +08:00
9 lines
270 B
Go
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)
|
|
}
|