package main
import (
"os/exec"
"syscall"
)
// open opens the specified URL in the default browser of the user.
func main() {
// 无GUI调用
cmd := exec.Command("cmd", "/c", "start", "https://tech.mojotv.cn")
cmd.SysProcAttr = &syscall.SysProcAttr{HideWindow: true}
cmd.Start()
}