summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_default_platform.go
blob: e9e2f63ba9e0886914f21f22bbd6687b9937361c (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build !windows,!linux

package config

// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() OSConfig {
	return OSConfig{
		OpenCommand:     "open {{filename}}",
		OpenLinkCommand: "open {{link}}",
	}
}