mirror of
https://github.com/mayswind/ezbookkeeping.git
synced 2026-05-14 15:07:33 +08:00
9 lines
167 B
Go
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
|
|
}
|