mirror of
https://github.com/rclone/rclone.git
synced 2024-11-29 12:04:11 +08:00
8 lines
147 B
Go
8 lines
147 B
Go
|
//+build android darwin linux nacl netbsd
|
||
|
|
||
|
package tree
|
||
|
|
||
|
import "syscall"
|
||
|
|
||
|
const modeExecute = syscall.S_IXUSR | syscall.S_IXGRP | syscall.S_IXOTH
|