Files
2026-01-06 14:06:27 +01:00

13 lines
177 B
Go

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