hugo/transform/post.go
Noah Campbell 80009b427f Change the order of Apply to be more Unixy
Typically the destination is on the left and the src is on the right.
2013-10-08 18:37:50 +02:00

10 lines
103 B
Go

package transform
import (
"io"
)
type Transformer interface {
Apply(io.Writer, io.Reader) error
}