jesseduffield_lazydocker/pkg/config/config_default_platform.go
2022-01-12 23:12:54 +11:00

13 lines
278 B
Go

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