mirror of
https://github.com/rclone/rclone.git
synced 2024-11-27 19:04:26 +01:00
17 lines
454 B
Go
17 lines
454 B
Go
package filename
|
|
|
|
import "errors"
|
|
|
|
const scsuNotEnabled = "scsu encoding not enabled in this build due to old go version"
|
|
|
|
// Functions wrap scsu package, since it doesn't build on old Go versions.
|
|
// Remove once v1.13 is minimum supported version.
|
|
|
|
var scsuDecode = func(b []byte) (string, error) {
|
|
return "", errors.New(scsuNotEnabled)
|
|
}
|
|
|
|
var scsuEncodeStrict = func(src string, dst []byte) ([]byte, error) {
|
|
return nil, errors.New(scsuNotEnabled)
|
|
}
|