lazydocker/pkg/config/config_default_platform.go
2019-05-12 10:32:02 +10:00

11 lines
244 B
Go

// +build !windows,!linux
package config
// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() []byte {
return []byte(
`os:
openCommand: 'open {{filename}}'
openLinkCommand: 'open {{link}}'`)
}