lazydocker/pkg/config/config_default_platform.go
2019-06-02 11:37:21 +10:00

11 lines
248 B
Go

// +build !windows,!linux
package config
// GetPlatformDefaultConfig gets the defaults for the platform
func GetPlatformDefaultConfig() OSConfig {
return OSConfig{
OpenCommand: "open {{filename}}",
OpenLinkCommand: "open {{link}}",
}
}