1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-01-09 19:07:14 -05:00
v2fly/main/json/config_json_windows.go

12 lines
151 B
Go
Raw Normal View History

// +build windows
package json
import "syscall"
func getSysProcAttr() *syscall.SysProcAttr {
return &syscall.SysProcAttr{
HideWindow: true,
}
}