File: uncompress_cgo.go

package info (click to toggle)
golang-github-sassoftware-go-rpmutils 0.2.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 360 kB
  • sloc: makefile: 2
file content (13 lines) | stat: -rw-r--r-- 169 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
// +build cgo

package rpmutils

import (
	"io"

	"github.com/DataDog/zstd"
)

func newZstdReader(r io.Reader) (io.ReadCloser, error) {
	return zstd.NewReader(r), nil
}