mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 15:40:23 +00:00
10 lines
106 B
Go
10 lines
106 B
Go
|
package sftpd
|
||
|
|
||
|
import (
|
||
|
"os/exec"
|
||
|
)
|
||
|
|
||
|
func wrapCmd(cmd *exec.Cmd, uid, gid int) *exec.Cmd {
|
||
|
return cmd
|
||
|
}
|