mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-09 18:03:15 +01:00
9 lines
114 B
Go
9 lines
114 B
Go
package formater
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
func TxtFormater(rc io.ReadCloser) (io.ReadCloser, error) {
|
|
return rc, nil
|
|
}
|