Files
ezbookkeeping/pkg/utils/io.go
T

9 lines
167 B
Go

package utils
import "io"
// IdentReader returns the original io reader
func IdentReader(encoding string, input io.Reader) (io.Reader, error) {
return input, nil
}