1
0
mirror of https://github.com/Mrs4s/go-cqhttp.git synced 2025-05-05 03:23:49 +08:00
This commit is contained in:
Ink-33 2021-01-13 03:52:49 +08:00
parent 1f7dcc4e91
commit 0c3ba714f7
No known key found for this signature in database
GPG Key ID: 5D8B1D036EFB0D2E
2 changed files with 1 additions and 15 deletions

View File

@ -1,5 +1,5 @@
// +build linux windows darwin
// +build 386 amd64 arm
// +build 386 amd64 arm arm64
package codec

View File

@ -1,14 +0,0 @@
// +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")
}