mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
10 lines
207 B
Go
10 lines
207 B
Go
//go:build darwin
|
|
|
|
package encoder
|
|
|
|
// OS is the encoding used by the local backend for macOS
|
|
//
|
|
// macOS can't store invalid UTF-8, it converts them into %XX encoding
|
|
const OS = (Base |
|
|
EncodeInvalidUtf8)
|