util/golang/client/client.go (7 lines of code) (raw):
// This file is auto-generated, don't edit it. Thanks.
/**
* Compress data by specified compress type, use isCompressorAvailable to check if the compress type is supported.
* @param src the data to be compressed
* @param compressType the compress type
* @return the compressed data
* @throws error if the compress type is not supported or the compress failed
*/
package client
import (
"github.com/alibabacloud-go/tea/tea"
)
func DeflateCompress (src []byte) (_result []byte, _err error) {
panic("No Support!")
}