mirror of
https://github.com/rclone/rclone.git
synced 2025-02-07 05:59:49 +01:00
13 lines
295 B
Go
13 lines
295 B
Go
//go:build darwin
|
|
// +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)
|