mirror of
https://github.com/peridotbuild/peridot.git
synced 2025-01-06 17:10:56 +00:00
13 lines
169 B
Go
Vendored
13 lines
169 B
Go
Vendored
// +build cgo
|
|
|
|
package rpmutils
|
|
|
|
import (
|
|
"io"
|
|
|
|
"github.com/DataDog/zstd"
|
|
)
|
|
|
|
func newZstdReader(r io.Reader) (io.ReadCloser, error) {
|
|
return zstd.NewReader(r), nil
|
|
}
|