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 }