//go:build !windows && !darwin package filedialog // SaveJSON is not available on this platform. func SaveJSON(title, defaultName string) (string, error) { return "", ErrUnsupported } // OpenJSON is not available on this platform. func OpenJSON(title string) (string, error) { return "", ErrUnsupported }