mirror of
https://hubproxy.babadafafafafa.cn/https://github.com/yunionio/cloudpods.git
synced 2026-09-21 00:24:07 +08:00
14 lines
272 B
Go
14 lines
272 B
Go
// +build cgo
|
|
|
|
package sarama
|
|
|
|
import "github.com/DataDog/zstd"
|
|
|
|
func zstdDecompress(dst, src []byte) ([]byte, error) {
|
|
return zstd.Decompress(dst, src)
|
|
}
|
|
|
|
func zstdCompressLevel(dst, src []byte, level int) ([]byte, error) {
|
|
return zstd.CompressLevel(dst, src, level)
|
|
}
|