mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-15 21:00:27 +00:00
13 lines
165 B
Go
13 lines
165 B
Go
//go:build !windows
|
|
|
|
package main
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
func executeSSH(path string, argv []string) error {
|
|
return syscall.Exec(path, argv, os.Environ())
|
|
}
|