mirror of
https://github.com/drakkan/sftpgo.git
synced 2025-12-11 22:27:05 +02: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
|
||
|
|
}
|