summaryrefslogtreecommitdiffstats
path: root/pkg/config/config_windows.go
blob: cea7224243ff92aae884b25fcf22ba50dcb876aa (plain)
1
2
3
4
5
6
7
8
9
package config

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