mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
12 lines
276 B
Go
12 lines
276 B
Go
//+build darwin
|
|
|
|
package local
|
|
|
|
import "github.com/rclone/rclone/lib/encoder"
|
|
|
|
// This is the encoding used by the local backend for macOS
|
|
//
|
|
// macOS can't store invalid UTF-8, it converts them into %XX encoding
|
|
const defaultEnc = (encoder.Base |
|
|
encoder.EncodeInvalidUtf8)
|