1
0
mirror of https://github.com/Mrs4s/go-cqhttp.git synced 2025-05-05 03:23:49 +08:00
go-cqhttp/global/codec/codec2.go
2021-01-08 12:14:09 +08:00

15 lines
283 B
Go

// +build !linux,!windows,!darwin
// +build !386,!amd64,!arm
package codec
import "errors"
func Init() error {
return errors.New("not support now")
}
func EncodeToSilk(record []byte, tempName string, useCache bool) ([]byte, error) {
return nil, errors.New("not support now")
}