mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-10 02:53:11 +00:00
12 lines
153 B
Go
12 lines
153 B
Go
// +build windows
|
|
|
|
package ctlcmd
|
|
|
|
import "syscall"
|
|
|
|
func getSysProcAttr() *syscall.SysProcAttr {
|
|
return &syscall.SysProcAttr{
|
|
HideWindow: true,
|
|
}
|
|
}
|