// +build windows package main import ( "os/exec" "time" ) var DefaultLib string = `C:\Program Files (x86)\Steam\steamapps` func startBrowser() { time.Sleep(time.Second*3) c := exec.Command("cmd", "/c", "start", "http://127.0.0.1"+Listen) Logger.Printf("Running command: %s", c.Run()) }