mirror of
https://github.com/rclone/rclone.git
synced 2024-11-25 17:57:44 +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
|