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)
|
|
}
|