rename: oop log parser result -> record

This commit is contained in:
Inanc Gumus
2019-08-28 13:42:24 +03:00
parent cc9e82bead
commit c1f245c628
11 changed files with 50 additions and 50 deletions

View File

@@ -13,9 +13,9 @@ import (
"strings"
)
type resultFn func(result)
type recordFn func(record)
type iterator interface{ each(resultFn) error }
type iterator interface{ each(recordFn) error }
type digester interface{ digest(iterator) error }
type transform interface {