diff options
Diffstat (limited to 'internal/processor/processor_interface.go')
| -rw-r--r-- | internal/processor/processor_interface.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/processor/processor_interface.go b/internal/processor/processor_interface.go index 8a8f803..7cf20f2 100644 --- a/internal/processor/processor_interface.go +++ b/internal/processor/processor_interface.go @@ -4,5 +4,5 @@ import "io" type Processor interface { DeductOutputPath(inputPath string) string - Process(ext string, reader io.Reader, writer io.Writer) error + Process(ext string, reader io.ReadCloser, writer io.WriteCloser) error } |