Skip to content

Commit

Permalink
Reuse
Browse files Browse the repository at this point in the history
  • Loading branch information
nathan-artie committed Mar 30, 2024
1 parent 9a17082 commit 7b1ee9a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lib/debezium/transformer/transformer.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,12 @@ import (

"github.com/artie-labs/reader/lib"
"github.com/artie-labs/reader/lib/debezium/converters"
"github.com/artie-labs/reader/lib/iterator"
)

type Row = map[string]any

type RowsIterator interface {
HasNext() bool
Next() ([]Row, error)
}
type RowsIterator = iterator.Iterator[[]Row]

type FieldConverter struct {
Name string
Expand Down

0 comments on commit 7b1ee9a

Please sign in to comment.