diff options
| author | 2025-07-15 17:36:47 +0700 | |
|---|---|---|
| committer | 2025-07-15 17:36:47 +0700 | |
| commit | 2d2138383af6d28c5b947c5a6c4989afa8f7ac56 (patch) | |
| tree | 6dfb9bf48bb640b29623cd0563c5c732afc196b0 /internal/processor/processor_interface.go | |
| parent | 373ec07b40178cb3b704aa83fc4fd53abfe279bc (diff) | |
| download | thumbnail-generator-2d2138383af6d28c5b947c5a6c4989afa8f7ac56.tar.gz thumbnail-generator-2d2138383af6d28c5b947c5a6c4989afa8f7ac56.zip | |
feat: first working prototype
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 } |