summaryrefslogtreecommitdiff
path: root/internal/processor/processor_interface.go
blob: 7cf20f23acc23e785d8bf6af8a0d19d6c5bdf15b (plain)
1
2
3
4
5
6
7
8
package processor

import "io"

type Processor interface {
	DeductOutputPath(inputPath string) string
	Process(ext string, reader io.ReadCloser, writer io.WriteCloser) error
}