mirror of
https://github.com/Mrs4s/go-cqhttp.git
synced 2025-05-05 03:23:49 +08:00
15 lines
283 B
Go
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")
|
|
}
|