mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-03-18 20:39:36 +00:00
11 lines
153 B
Go
11 lines
153 B
Go
// +build windows
|
|
|
|
package ctlcmd
|
|
|
|
import "syscall"
|
|
|
|
func getSysProcAttr() *syscall.SysProcAttr {
|
|
return &syscall.SysProcAttr{
|
|
HideWindow: true,
|
|
}
|
|
}
|