//go:build !linux && !windows package openfolder import ( "fmt" "runtime" ) func OpenLocation(path string) error { return fmt.Errorf("unsupported OS: %s", runtime.GOOS) }