summaryrefslogtreecommitdiff
path: root/internal/processor/processor_interface.go
blob: 8a8f8038c57cff49ffdf20620bb285e326b629fc (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.Reader, writer io.Writer) error
}