1
0
mirror of https://github.com/Mrs4s/go-cqhttp.git synced 2025-05-05 19:43:49 +08:00
go-cqhttp/global/codec/codec_unsupportedarch.go
2021-01-13 03:55:28 +08:00

14 lines
262 B
Go

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