1
0
mirror of https://github.com/Mrs4s/go-cqhttp.git synced 2025-05-06 03:53:50 +08:00
go-cqhttp/global/codec/codec_unsupportedarch.go
2021-01-13 11:22:59 +08:00

14 lines
289 B
Go

// +build !386,!arm64,!amd64,!arm
package codec
import "errors"
func Init(cachePath, codecPath string) error {
return errors.New("Unsupport arch now")
}
func EncodeToSilk(record []byte, tempName string, useCache bool) ([]byte, error) {
return nil, errors.New("Unsupport arch now")
}