refactor: log parser text writer and func types

This commit is contained in:
Inanc Gumus
2019-08-06 01:49:48 +03:00
parent eadf0c85e4
commit 69094da997
6 changed files with 34 additions and 16 deletions

View File

@@ -4,8 +4,6 @@ import "io"
type (
retrieveFunc func(io.Reader) ([]result, error)
filterFunc func(result) bool
groupFunc func(result) string
writeFunc func(io.Writer, []result) error
)