aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/windows.go
blob: 76491f1eed0aa1f0bbb3ddbe633d917aabfe4dcf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// +build windows

package main

// DefaultLib path for the operating system in question
var DefaultLib string = `C:\Program Files (x86)\Steam\steamapps`

// BrowserCommand returns a []string containing the command that will start the
// browser for a given url specific to the OS
func BrowserCommand(url string) []string {
	return []string{"cmd", "/c", "start", url}
}