mirror of
https://github.com/gohugoio/hugo.git
synced 2024-05-11 05:54:58 +00:00
10 lines
103 B
Go
10 lines
103 B
Go
package transform
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type Transformer interface {
|
|
Apply(io.Reader, io.Writer) error
|
|
}
|