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

package config

// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() []byte {
	return []byte(
		`os:
  openCommand: 'open {{filename}}'`)
}