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

import "io"

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