mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2024-04-21 12:32:08 +00:00
10 lines
114 B
Go
10 lines
114 B
Go
package formater
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func TxtFormater(rc io.ReadCloser) (io.ReadCloser, error) {
|
|
return rc, nil
|
|
}
|